CSSTransformValue: forEach() メソッド
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
CSSTransformValue.forEach() メソッドは、指定された関数を CSSTransformValue の各要素に対して一度だけ実行します。
構文
js
forEach(callbackFn)
forEach(callbackFn, thisArg)
引数
callbackFn-
各要素に対して実行する関数で、3 つの引数を取ります。
currentValue-
現在処理中の要素の値です。
index省略可-
現在処理中の要素の位置です。
array省略可-
forEach()が実行されているCSSTransformValueです。
thisArg省略可-
callbackが実行されるときにthisとして扱われる値(すなわち、Objectの参照)です。
返値
なし (undefined)。
例
To Do