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

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

Revision as of 06:49, 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');
   }

});


})