Difference between revisions of "MediaWiki: Common.js"

From Knowledge Federation
Jump to: navigation, search
Line 14: Line 14:
 
             $('#mw-head').data('size','small');
 
             $('#mw-head').data('size','small');
 
             $('#mw-head').stop().animate({
 
             $('#mw-head').stop().animate({
                 height:'60px'
+
                 height:'65px'
 
             },600);
 
             },600);
 
         }
 
         }

Revision as of 16:45, 27 November 2018

/* Any JavaScript here will be loaded for all users on every page load. */

/*javascript:alert("hello world");*/

$(function(){
    $('#mw-head').data('size','big');
});

$(window).scroll(function(){
    if($(document).scrollTop() > 0)
    {
        if($('#mw-head').data('size') == 'big')
        {
            $('#mw-head').data('size','small');
            $('#mw-head').stop().animate({
                height:'65px'
            },600);
        }
    }
    else
    {
        if($('#mw-head').data('size') == 'small')
        {
            $('#mw-head').data('size','big');
            $('#mw-head').stop().animate({
                height:'100px'
            },600);
        }  
    }
});