Difference between revisions of "Template:Team:SJTU-Software/wiki.js"

 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<html>
+
 
<body>
+
<script>
+
 
$(document).ready(function(){
 
$(document).ready(function(){
 
$(".fixed-nav").css("top",$(window).height()*0.3);
 
$(".fixed-nav").css("top",$(window).height()*0.3);
Line 17: Line 15:
 
})
 
})
 
}
 
}
</script>
 
</body>
 
</html>
 

Latest revision as of 16:59, 11 September 2015

$(document).ready(function(){ $(".fixed-nav").css("top",$(window).height()*0.3);

   $("html").niceScroll();    

$('.designNav').click(changePage); }); var changePage = function(){ var active = $(this).text(); console.log(active); var bros = $(this).siblings(); $("."+active).css("display","inline"); bros.each(function(){ active = $(this).text(); $("."+active).css("display","none"); }) }