recherche

Maison  >  Questions et réponses  >  le corps du texte

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

比如就像下面这样的css

.go{ animation:godan 5s;}

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

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

黄舟黄舟2832 Il y a quelques jours431

répondre à tous(1)je répondrai

  • PHP中文网

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

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

    répondre
    0
  • Annulerrépondre