animation-iteration-count属性
animation-iteration-count属性用于定义动画的播放次数,其基本语法如下:
animation-iteration-count: number | infinite;
在上述语法格式中,animation-iteration-count属性初始值为1。如果属性值为number,则用于定义播放动画的次数;如果是infinite,则指定动画循环播放。例如下面的示例代码:
animation-iteration-count:3;
在上面的代码中,使用animation-iteration-count属性定义动画效果需要播放3次,动画效果将连续播放三次后停止。