Team:Peking/js/inside.js
From 2014.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
- | + | var hei=$("#insidemid ").height()-40; | |
- | $("# | + | $("#sidenav").css( "height", hei |
); | ); | ||
Revision as of 03:23, 14 October 2014
$(document).ready(function(){
var hei=$("#insidemid ").height()-40; $("#sidenav").css( "height", hei );
$("#list").pin({
containerSelector: "#sidenav"
});
jumpupposition(); $('#jumpup').hover(function(){ $("#jumpup img").attr({"src":""});
},function(){
$("#jumpup img").attr({"src":""}); }); $('#jumpdown').hover(function(){ $("#jumpdown img").attr({"src":""});
},function(){
$("#jumpdown img").attr({"src":""});
});
});
function jumpupposition()
{
var right=($("body").width()-$("#mainbody").width())/2-80;
if(right<0){ right=0; } $("#jumpup").css('right',right);
$("#jumpdown").css('right',right); //alert(right);
};