Controlling CSS Animations and Transitions with JavaScript

Some of the most useful yet little-known JavaScript tricks for manipulating CSS transitions and animations are the DOM events they fire. Like: animationend, animationstart, and animationiteration for animations and transitionend for transitions. You might guess what they do. These animation events fire when the animation on an element ends, starts, or completes one iteration, respectively.

Source

Leave a Reply

Your email address will not be published. Required fields are marked *