Team:SYSU-Software/hm-overview.js
From 2014.igem.org
(Difference between revisions)
Huangmin1012 (Talk | contribs) |
Huangmin1012 (Talk | contribs) |
||
Line 1: | Line 1: | ||
window.onload = function(){ | window.onload = function(){ | ||
- | var count = parseInt(window.location. | + | var count = parseInt(window.location.hash.slice(-1)), |
wheel = true; | wheel = true; | ||
document.getElementById('showpics').className = 'rotate'; | document.getElementById('showpics').className = 'rotate'; |
Revision as of 03:38, 17 October 2014
window.onload = function(){ var count = parseInt(window.location.hash.slice(-1)), wheel = true; document.getElementById('showpics').className = 'rotate'; count = (count>0 && count<5)? count : 1; document.getElementById('bodycontent').className="hm-part"+count; $(window).mousewheel(function(e, delta){ if(wheel){ wheel = false; if(count==1 && delta>0){ count=1; } else if(count==4 && delta<0){ count=4; } else { delta > 0 ? count-- : count++; count = count%4 || 4; } document.getElementById('bodycontent').className = 'hm-part'+count; setTimeout(function(){ wheel = true; }, 600) } }); }