我可以为CSS动画延迟属性使用多个值吗?

时间:2014-01-28 04:30:14

标签: css

我可以在1秒和40毫秒后运行动画,而不用几毫秒来写,例如:animation-delay: 140ms;

1 个答案:

答案 0 :(得分:0)

是的,你可以尝试这样写

animation-delay: 1.4s;

-webkit-animation-delay:1.4s; /* Safari and Chrome */

animation-delay: 1.4s; /* W3C and Opera */

-moz-animation-delay: 1.4s; /* Firefox */

甚至喜欢这个

animation-delay: 1s, 40ms;

-webkit-animation-delay:1s, 40ms; /* Safari and Chrome */

animation-delay: 1s, 40ms; /* W3C and Opera */

-moz-animation-delay: 1s, 40ms; /* Firefox */

看这里https://developer.mozilla.org/en-US/docs/Web/CSS/animation-delay