Skip to content

Instantly share code, notes, and snippets.

@jeremyckahn
Created May 6, 2011 15:20
Show Gist options
  • Select an option

  • Save jeremyckahn/959142 to your computer and use it in GitHub Desktop.

Select an option

Save jeremyckahn/959142 to your computer and use it in GitHub Desktop.
vsa.sequence psuedocode
vsa.sequenceStart('box.move', function(sequenceName) {
box.animate({
'left': '+=200'
}, {
'duration': 500
}).animate({
'left': 0
}, {
'duration': 500,
'complete': function() {
vsa.sequenceEnd(sequenceName);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment