Skip to content

Instantly share code, notes, and snippets.

@moskowite
Created December 7, 2011 18:24
Show Gist options
  • Save moskowite/1443968 to your computer and use it in GitHub Desktop.
Save moskowite/1443968 to your computer and use it in GitHub Desktop.
<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