Skip to content

Instantly share code, notes, and snippets.

@brianleroux
Created January 27, 2011 18:41
Show Gist options
  • Save brianleroux/798962 to your computer and use it in GitHub Desktop.
Save brianleroux/798962 to your computer and use it in GitHub Desktop.
// simple animation
x$('#box').tween({ left:'100px'});
// more complicated...
x$('#box').tween({ left:'100px', duration:'0.1' });
// queue transitions w/ an array..
x$('#box').tween([{left:'100px'}, { right:'100px' }]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment