Created
March 21, 2020 07:39
-
-
Save taimursaeed/defb25581ba9700f3813311321fcdbe7 to your computer and use it in GitHub Desktop.
Wait for CSS animation to complete
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
// wait for css animation to complete | |
$(".class").on( | |
"animationend webkitAnimationEnd oAnimationEnd MSAnimationEnd", | |
function() { | |
$(this).css({ | |
//do stuff | |
}); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment