Created
December 7, 2011 18:24
-
-
Save moskowite/1443968 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function startScrolling(){ | |
var getInt = setInterval(function js_spinner(){ | |
if(typeof js_spinner_bottom === 'undefined'){ | |
js_spinner_bottom = 0; | |
} | |
js_spinner_bottom += 300; | |
if(js_spinner_bottom > 1200){ | |
js_spinner_bottom = 0; | |
} | |
$('div.top_slide').animate({ bottom: js_spinner_bottom+'px'}, 500, 'swing'); | |
} | |
,timer); | |
} | |
$('.third_projects').mouseenter(clearInterval(getInt)).mouseleave(startScrolling); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment