Last active
December 17, 2015 09:39
-
-
Save mklickman/5589252 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
// Attatch an event listener to your element for when the first animation | |
// finishes, but only when it's named for the first animation | |
$('.my-element').on('animationend', function() { | |
if ($(this).css('animation-name') == "animation-1") { | |
// Change the CSS animation-name property for the 2nd animation | |
$(this).css('animation-name', 'animation-2'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment