如何在jquery中获取Keyframes值

时间:2013-11-12 12:12:24

标签: jquery css3 css-animations

我有一个进度条,我希望得到它的价值。 css里面的.bar类为我的进度条设置动画,当关键帧值为0%25%时,我希望得到进度条的值。在jquery中为100%。

     .bar 
    { border-radius:5px; 
       animation:myfirst 50s;
      -webkit-animation:myfirst 50s;
      -webkit-animation-play-state:running;
       animation-play-state:running; 
     } 
      @keyframes myfirst {
       0% { height:0%; } 
       25% { height:25%; } 
        50% { height:50%; }
       100% { height:100%; } 
       } 

0 个答案:

没有答案