Difference between revisions of "MediaWiki: Common.js"

From Knowledge Federation
Jump to: navigation, search
Line 8: Line 8:
 
};
 
};
  
/*javascript:alert("hello world");
 
  
$(function(){
 
    $('#mw-head').data('size','big');
 
});
 
  
  
  
  
 +
/*javascript:alert("hello world");
  
 +
$(function(){
 +
    $('#mw-head').data('size','big');
 +
});
  
 
$(window).scroll(function(){
 
$(window).scroll(function(){

Revision as of 17:01, 27 November 2018

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



window.onscroll = () => {
  const nav = document.querySelector('#navbar');
  if(this.scrollY <= 10) nav.className = ''; else nav.className = 'scroll';
};






/*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:'65'
            },600);
        }
    }
    else
    {
        if($('#mw-head').data('size') == 'small')
        {
            $('#mw-head').data('size','big');
            $('#mw-head').stop().animate({
                height:'100px'
            },600);
        }  
    }
});*/