Difference between revisions of "Template:BNU-CHINA/Javascript/index"

Line 13: Line 13:
 
  */
 
  */
  
 +
$(document).ready(function() {
 +
 
 
/**
 
/**
 
  --  0.0 global
 
  --  0.0 global
 
  */
 
  */
  
$(document).ready(function() {
 
 
   $('#sideMenu').hide();
 
   $('#sideMenu').hide();
 
   var totalHeight = document.documentElement.clientHeight;
 
   var totalHeight = document.documentElement.clientHeight;
Line 24: Line 25:
 
);
 
);
  
})
 
  
 
/**
 
/**
Line 41: Line 41:
 
     }
 
     }
 
});
 
});
 +
 +
 +
})

Revision as of 05:50, 7 October 2016

/**

* Created by lvxin on 16/9/25.
* Co-worked by Zitan Chen (czt95@icloud.com)
*/


/**----------------------------------------------

>>> Table of Contents:
------------------------------------------------
0.0 global
1.0 navigation bar
------------------------------------------------
*/

$(document).ready(function() {

/**

--  0.0 global
*/
  $('#sideMenu').hide();
  var totalHeight = document.documentElement.clientHeight;
  $(".page-heading").css(
   "height", totalHeight

);


/**

*  1.0 navigation bar
*/

$(window).scroll(function () {

   if ($(window).scrollTop() >= document.documentElement.clientHeight) {
       $('.nav-container').addClass('scrolled-down');
   }
   if ($(window).scrollTop() < document.documentElement.clientHeight) {
       $('.nav-container').removeClass('scrolled-down');
       $('.nav-container').removeClass('scrolled-top');
   }
   if ($(window).scrollTop() === 0) {
       $('.nav-container').addClass('scrolled-top');
   }

});


})