備忘録的プログラミングリファレンス

TransitionEventインターフェイス

 TransitionEventインターフェイスは、CSS が変化することで発生するイベントに関するインターフェイスです。

 Event インターフェイスを継承していますので、Event インターフェイスの Property と Method、 Event タイプが使えます。

TransitionEvent継承図
  • Event
    • └── TransitionEvent

Properties

Example Syntax

var bubbles_value = TransitionEvent.bubbles;
Property
elapsedTimeCSSアニメーションが実行された秒数
propertyName 
pseudoElement 

TransitionEvent Types

 TransitionEventタイプはエレメントに設定してwebページで起こるイベントを捉えます。

Example Syntax

object.onabort = function(){script_or_function};
TransitionEvent type
onanimationendCSSアニメーションの実行が完了したら
onanimationiterationCSSアニメーションが繰り返し実行されたら
onanimationstartCSSアニメーションの実行が始まったら