Javascript 暂停并更改CSS3动画的当前帧?

Javascript 暂停并更改CSS3动画的当前帧?,javascript,jquery,html,css,css-animations,Javascript,Jquery,Html,Css,Css Animations,是否可以在暂停CSS3动画后更改其当前帧(使用jQuery或Vanilla JS)?我该怎么做 更具体地说,我正在考虑可以更改当前帧的slidebar…西姆·维达斯在上面写了一篇漂亮的文章 但旧IE上的CSS3仍然存在问题。 和工作小提琴: .pause{ -webkit-animation-play-state:paused; -moz-animation-play-state:paused; -o-animation-play-state:paused;

是否可以在暂停CSS3动画后更改其当前帧(使用jQuery或Vanilla JS)?我该怎么做


更具体地说,我正在考虑可以更改当前帧的slidebar…

西姆·维达斯在上面写了一篇漂亮的文章 但旧IE上的CSS3仍然存在问题。 和工作小提琴:

.pause{
     -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused; 
    animation-play-state:paused;
}