Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created December 13, 2012 21:20
Show Gist options
  • Save jlittlejohn/4280007 to your computer and use it in GitHub Desktop.
Save jlittlejohn/4280007 to your computer and use it in GitHub Desktop.
JS: Animate Template
$('p').animate({
left: '+=90px',
top: '+=150px',
opacity: 0.25
},
900,
'linear',
function() {
// function code on animation complete
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment