Team:UCLA/Template/Javascript
From 2014.igem.org
(Difference between revisions)
Samichaels (Talk | contribs) |
Samichaels (Talk | contribs) |
||
Line 91: | Line 91: | ||
</script> | </script> | ||
- | + | <!-- SAM'S CAROUSEL EDIT SORRY AGAIN --> | |
+ | <script type="text/javascript"> | ||
+ | $(".scroll").click(function(event){ | ||
+ | event.preventDefault(); | ||
+ | //calculate destination place | ||
+ | var dest=0; | ||
+ | if($(this.hash).offset().top > $(document).height()-$(window).height()){ | ||
+ | dest=$(document).height()-$(window).height(); | ||
+ | }else{ | ||
+ | dest=$(this.hash).offset().top; | ||
+ | } | ||
+ | //go to destination | ||
+ | $('html,body').animate({scrollTop:dest}, 700,'swing'); | ||
+ | }); | ||
+ | </script> | ||
<!--BACK TO TOP BUTTON--> | <!--BACK TO TOP BUTTON--> |
Revision as of 23:02, 7 August 2014