最新的Web开发教程
 

Style animationIterationCount Property

<Style对象

改变的animationIterationCount属性<div>元素:

document.getElementById("myDIV").style.animationIterationCount = "infinite";
试一试»

定义和用法

该animationIterationCount属性设置或返回动画应该有多少次播放。


浏览器支持

在表中的数字规定,完全支持该财产浏览器版本。

数字后面盎司指定的前缀工作的第一个版本。

属性
animationIterationCount 43.0 不支持 16.0
5.0万盎司
不支持 30.0

句法

返回animationIterationCount属性:

object .style.animationIterationCount

设置animationIterationCount属性:

object .style.animationIterationCount=" 属性值
描述
number 一个数字,它定义了一个动画多少次应发挥。 默认值为1。
infinite 指定动画应该播放无限次(for ever)
initial 将此属性设置为默认值。 阅读关于初始
inherit 继承其父元素此属性。 阅读关于继承

技术细节

默认值: 1
返回值: 一个字符串,表示元素的动画迭代计数属性
CSS版本 CSS3

相关页面

CSS参考: animation-iteration-count property


<Style对象