Skip to content

Instantly share code, notes, and snippets.

@ericlifka
Created February 19, 2015 19:35
Show Gist options
  • Save ericlifka/e4720acd768c45da09cc to your computer and use it in GitHub Desktop.
Save ericlifka/e4720acd768c45da09cc to your computer and use it in GitHub Desktop.
var transitions = [ "#slider_1", /* ... */ ];
var transitionNext = function () {
var next = transitions.shift();
if (!next) {
return;
}
$(next).transition({
x: '100%'
}, transitionNext);
};
transitionNext();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment