Team:Peking/js/mem.js
From 2014.igem.org
(Difference between revisions)
(Created page with "$(document).ready(function(){ // var hei=$("#midbody").height(); // $("#sidenav").css( "height", hei // ); $("#sidenav").pin({ containerSelector: "#insidemid" }); ...") |
|||
(7 intermediate revisions not shown) | |||
Line 6: | Line 6: | ||
- | $("#sidenav").pin({ | + | var wid=$("#insidemid").width()-$("#midbody").width()-50; |
+ | $("#sidenav").css( "width", wid | ||
+ | ); | ||
+ | |||
+ | $("#pinned").pin({ | ||
containerSelector: "#insidemid" | containerSelector: "#insidemid" | ||
}); | }); |
Latest revision as of 03:19, 15 October 2014
$(document).ready(function(){
// var hei=$("#midbody").height(); // $("#sidenav").css( "height", hei // );
var wid=$("#insidemid").width()-$("#midbody").width()-50;
$("#sidenav").css( "width", wid
);
$("#pinned").pin({ containerSelector: "#insidemid" });
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);
};