We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc7ba3 commit 121141bCopy full SHA for 121141b
7-animation/2-css-animations/1-animate-logo-css/solution.view/index.html
@@ -27,12 +27,12 @@
27
<img id="flyjet" src="https://en.js.cx/clipart/flyjet.jpg">
28
29
<script>
30
- let ended = false;
+ let ended = false; // will change to true after the animation finishes
31
32
flyjet.onclick = function() {
33
34
flyjet.addEventListener('transitionend', function() {
35
- if (!ended) {
+ if (!ended) { // check to show the message only once
36
ended = true;
37
alert('Done!');
38
}
0 commit comments