Reputation: 1419
I got this working before, but cannot tell why currently the transitionend
events aren't firing. Code in jsfiddle below.
Upvotes: 0
Views: 46
Reputation: 360
I got it to work by replacing the transitionend
with the animationend
events since you are using CSS3 animation properties rather than transitions.
Here is your modified JSFiddle: http://jsfiddle.net/rNzdt/3/
Upvotes: 1