repeatCount属性指定动画的持续时间。使用此属性的元素包括<animate>,<animateColor>,<animateMotion>,<animateTransform>和<set>
用法:
repeatCount = number || indefinite
属性值:repeatCount属性接受上面提到和下面描述的值。
- number:它指示迭代次数。值开始大于0或更大。
- indefinite:它指定动画将无限期重复。
范例1:下面的示例说明了repeatCount属性的用法。
HTML
<!DOCTYPE html>
<html>
<body>
<div style="color:green;
text-align:center;">
<h1>GeeksforGeeks</h1>
<h4>It will stop after 6 sec.</h4>
<svg viewBox="0 0 620 150"
xmlns="http://www.w3.org/2000/svg">
<rect x="260" y="0" fill="green"
width="100" height="100">
<animate attributeType="XML"
attributeName="y" from="0"
to="50" dur="1s" repeatCount="6" />
</rect>
</svg>
</div>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html>
<body>
<div style="color:green;
text-align:center;">
<h1>GeeksforGeeks</h1>
<h4>It will continue to animate</h4>
<svg viewBox="0 0 620 150"
xmlns="http://www.w3.org/2000/svg">
<rect x="260" y="0" fill="green"
width="100" height="100">
<animate attributeType="XML"
attributeName="y" from="0"
to="50" dur="1s"
repeatCount="indefinite" />
</rect>
</svg>
</div>
</body>
</html>
输出:
相关用法
- SVG viewBox属性用法及代码示例
- SVG rx属性用法及代码示例
- SVG width属性用法及代码示例
- SVG opacity属性用法及代码示例
- SVG stroke-width属性用法及代码示例
- SVG stroke属性用法及代码示例
- SVG height属性用法及代码示例
- SVG ry属性用法及代码示例
- SVG fill属性用法及代码示例
- SVG font-size属性用法及代码示例
- SVG stroke-dasharray属性用法及代码示例
- SVG cx属性用法及代码示例
- SVG flood-opacity属性用法及代码示例
- SVG filter属性用法及代码示例
- SVG font-style属性用法及代码示例
- SVG flood-color属性用法及代码示例
- SVG fill-opacity属性用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 SVG repeatCount attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。