-
-
Save ljanzik/98e02e30d4dd178073da to your computer and use it in GitHub Desktop.
Wann ist eine CSS Transition vorbei?
This file contains 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
$('#box').click(function() { | |
$('#box').animate({ | |
marginLeft: '200' | |
}, 5000, function() { | |
alert("Animation vorbei"); | |
}); | |
}); |
This file contains 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
function animationEnd(){ | |
alert("Animation vorbei"); | |
} | |
document.getElementById("box").addEventListener("webkitTransitionEnd", animationEnd); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment