Reputation: 3000
Just wondering out loud. Are there any events fired DURING a css3 transition. I know there is webkitTransitionEnd, but is there a webkitTransitionStart or even better (which is what i really need right now) a webkitTransitionDuring (or something similar). I need to set of some functions depending on the position of a div that i move using transition. thanks guys.
Upvotes: 2
Views: 3835
Reputation: 94379
Yes there is webkitAnimationStart
. (Similar enough)
See Safari Developer Library - WebKitAnimationEvent Class Reference
However, there is no such thing as webkitTransitionStart
.
See Safari Developer Library - WebKitTransitionEvent Class Reference
Upvotes: 2