Evan Ward
Evan Ward

Reputation: 1419

Javascript - Transition End isn't firing

I got this working before, but cannot tell why currently the transitionend events aren't firing. Code in jsfiddle below.

http://jsfiddle.net/rNzdt/2/

Upvotes: 0

Views: 46

Answers (1)

stripthesoul
stripthesoul

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

Related Questions