Team:HIT-Harbin/js/main.js

From 2014.igem.org

(Difference between revisions)
Line 17: Line 17:
   });
   });
$(document).ready(function(){
$(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(); }); })
+
  $(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(); }); })        
   });
   });
Line 23: Line 23:
$(window).scroll(function()
$(window).scroll(function()
{   
{   
-
 
+
var $top1= $('#minibar').offset().top + 20; 
 +
var $mid1 =  Math.floor($(window).height() / 2);
if ($(window).scrollTop()>$top1)   
if ($(window).scrollTop()>$top1)   
{
{
Line 36: Line 37:
}
}
-
 
-
 
});
});

Revision as of 10:38, 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() { var $top1= $('#minibar').offset().top + 20; var $mid1 = Math.floor($(window).height() / 2); if ($(window).scrollTop()>$top1) { $('#nav').hide(); $('#minibar').show(); $('#minibar').addClass('nav'); } else { $('#minibar').hide(); $('#nav').show();

} });