1

It's possible to change current frame of CSS3 animation after pause it (using jQuery or Vanilla JS)? How can I do that?

More specifically, I'm thinking about slidebar which I can change current frame...

Siper
  • 1,175
  • 1
  • 14
  • 39

1 Answers1

0

Šime Vidas write a nice post on Link But there is still problem with CSS3 on old IE. And working fiddle : http://jsfiddle.net/simevidas/TnGhH/2/

.pause{
     -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused; 
    animation-play-state:paused;
}
Community
  • 1
  • 1
VeeeneX
  • 1,556
  • 18
  • 26