Team:HIT-Harbin/js/main.js
From 2014.igem.org
(Difference between revisions)
Line 21: | Line 21: | ||
- | + | $(window).scroll(function() | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
{ | { | ||
if ($(window).scrollTop()>$top1) | if ($(window).scrollTop()>$top1) | ||
{ | { | ||
+ | $('#nav').hide(); | ||
+ | $('#minibar').show(); | ||
$('#minibar').addClass('nav'); | $('#minibar').addClass('nav'); | ||
- | } | + | } |
+ | else | ||
+ | { | ||
+ | $('#minibar').hide(); | ||
+ | $('#nav').show(); | ||
+ | } | ||
- | |||
- | |||
}); | }); |
Revision as of 10:30, 17 October 2014
function sideMenu(x){ var arr=document.getElementsByName("rnav"); var y=x-1; for(var i=0;i<6;i++){
if(i==y){ arr[i].style.display = "block";
}
else{ arr[i].style.display = "none";
} } }
$(document).ready(function(){
$(function(){ $("ul.nav1").hide(); $(".nav1").hover(function(){ $(this).find("ul").stop(true,true); $(this).find("ul").slideDown(); },function(){ $(this).find("ul").stop(true,true); $(this).find("ul").slideUp(); }); }) });
$(document).ready(function(){
$(function(){ $("ul.rnav1").hide(); $(".rnav1").hover(function(){ $(this).find("ul").stop(true,true); $(this).find("ul").slideDown(); },function(){ $(this).find("ul").stop(true,true); $(this).find("ul").slideUp(); }); }) });
$(window).scroll(function()
{
if ($(window).scrollTop()>$top1) { $('#nav').hide(); $('#minibar').show(); $('#minibar').addClass('nav'); } else { $('#minibar').hide(); $('#nav').show();
}
});