P粉2390894432023-08-21 17:16:38
如果您使用更多的动画属性,则可以使用简写方式:
animation: bubble 2s linear 0.5s 1 normal forwards;
这样设置:
bubble
动画名称2s
持续时间linear
时间函数0.5s
延迟1
迭代次数(可以是 'infinite
')normal
方向forwards
填充模式(如果您希望兼容使用结束位置作为最终状态,请设置为 'backwards' [这是为了支持关闭动画的浏览器]{仅回答标题,而不是您的具体情况})可用的时间函数:
ease | ease-in | ease-out | ease-in-out | linear | step-start | step-end
可用的方向:
normal | reverse | alternate | alternate-reverse
P粉5643017822023-08-21 15:00:10
尝试添加 animation-fill-mode: forwards;
。例如,可以像这样使用简写:
animation: bubble 1.0s forwards;
https://developer.mozilla.org/en-US/docs/Web/CSS/animation-fill-mode