search

Home  >  Q&A  >  body text

javascript - js可不可以定义css animation的时间?

比如就像下面这样的css

.go{ animation:godan 5s;}

@keyframes godan{
    from {transform:translateX(400%);}
    to {transform:translateX(0%);}
}

我能不能通过js去定义godan的时间是1s,5s或者其他的时间?谢谢。

黄舟黄舟2832 days ago427

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-04-10 14:39:30

    $(element).css({
        'animation-duration':'5s'
    })
    

    reply
    0
  • Cancelreply