Difference between revisions of "MediaWiki: Common.js"

From Knowledge Federation
Jump to: navigation, search
Line 2: Line 2:
  
 
/*javascript:alert("hello world");*/
 
/*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:'40px'
 +
            },600);
 +
        }
 +
    }
 +
    else
 +
    {
 +
        if($('#mw-head').data('size') == 'small')
 +
        {
 +
            $('#mw-head').data('size','big');
 +
            $('#mw-head').stop().animate({
 +
                height:'100px'
 +
            },600);
 +
        } 
 +
    }
 +
});

Revision as of 16:41, 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:'40px'
            },600);
        }
    }
    else
    {
        if($('#mw-head').data('size') == 'small')
        {
            $('#mw-head').data('size','big');
            $('#mw-head').stop().animate({
                height:'100px'
            },600);
        }  
    }
});