要素に CSS トランジションを適用しています。
target.style.transition = "color 10000ms ease";
target.style.color = "red";
特定の状況下では、トランジションが終了するのを待たずに、このトランジションの終了状態にすぐに到達する必要があります。
私が試したら
target.style.transition = "color 0ms";
target.style.color = "red";
現在の移行は継続しています。
やっている
target.style.transition = "color 0ms";
target.style.color = "blue";
すぐに「青」に設定しますが、
target.style.transition = "color 0ms";
target.style.color = "blue";
target.style.color = "red";
移行の継続という結果になります。(ChromeとFFの両方で試しました)
移行を停止する方法はありますか?