我正在将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中尝试过)
有没有办法阻止过渡?