Skip to content

Instantly share code, notes, and snippets.

@imakewebthings
Created March 2, 2012 05:12
Show Gist options
  • Save imakewebthings/1955854 to your computer and use it in GitHub Desktop.
Save imakewebthings/1955854 to your computer and use it in GitHub Desktop.
$(document).bind('deck.change', function(event, from, to) {
var $entering = $.deck('getSlide', to);
$leaving = $.deck('getSlide', from);
if ($entering.hasClass('animation')) {
// Do what you need to do to start animation inside currentSlide
}
if ($leaving.hasClass('animation')) {
// Do what you need to do to stop animation, if anything
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment