Skip to content

Instantly share code, notes, and snippets.

@jdkealy
Created November 1, 2011 15:11
Show Gist options
  • Save jdkealy/1330745 to your computer and use it in GitHub Desktop.
Save jdkealy/1330745 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$(".videoBG").append($('.wheel'));
$(".wheel").animate({
top: '10%',
}, 3500, function() {
$(".wheel").rotate({
animateTo:720,
callback: function(){
$(".wheel").animate({
top: '0%',
left: '0%',
height: '60px'
}, 1500, function(){
$(".side-nav").animate({
width: '300px'
});
});
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment