selanac82
selanac82

Reputation: 3000

Webkit Transition Events

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

Answers (1)

Derek 朕會功夫
Derek 朕會功夫

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

Related Questions