search

Home  >  Q&A  >  body text

css3 animation animation parameter problem

-webkit-animation: pen_left 1s linear 1s 1;

I want to achieve a playback once with a delay of 1s and a duration of 1s. Is it wrong to write it like this? If you add the delay and the number of times, it won’t move. It’s not right to write it alone. What’s going on?

代言代言2798 days ago1092

reply all(4)I'll reply

  • PHP中文网

    PHP中文网2017-06-14 10:52:20

    -webkit-animation: pen_left 1s linear 1s 1;
    animation: pen_left 1s linear 1s 1;

    reply
    0
  • 高洛峰

    高洛峰2017-06-14 10:52:20

    Remove the 0s and 1 at the end, it’s useless

    reply
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-06-14 10:52:20

    animation:pen_left 1s linear;

    reply
    0
  • 世界只因有你

    世界只因有你2017-06-14 10:52:20

    没有触发`animation`你这个问题都没有问清楚,就写了一行代码

    reply
    0
  • Cancelreply