Created
March 2, 2012 05:12
-
-
Save imakewebthings/1955854 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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