Team:HIT-Harbin/js/main.js

From 2014.igem.org

(Difference between revisions)
Line 28: Line 28:
var $mid1 =  Math.floor($(window).height() / 2);
var $mid1 =  Math.floor($(window).height() / 2);
-
$(window).scroll(function()
 
-
 
-
if ($(window).scrollTop()>$top1) 
 
-
{
 
-
$('#nav').hide();
 
-
$('#minibar').show();
 
-
$('#minibar').addClass('nav');
 
-
}
 
-
else
 
-
{
 
-
$('#minibar').hide();
 
-
$('#nav').show();
 
-
}
 
-
 
 
 

Revision as of 10:18, 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();	});	})
 });


$(document).ready(function() {


var $top1= $('#minibar').offset().top + 20; var $mid1 = Math.floor($(window).height() / 2);



});

});