animationIterationCount property
Specifies the number of times an animation cycle is played.
This property is read/write.
Syntax
HRESULT put_animationIterationCount(
[in] BSTR v
);
HRESULT get_animationIterationCount(
[out, retval] BSTR *p
);
Property values
Type: BSTR
One or more repetition counts, separated by commas.
String format
[ 1 | <number> | infinite ][ , [ 1 | <number> | infinite ]] *
CSS information
Applies To | block-level and inline-level elements |
Media | visual |
Inherited | no |
Initial Value | 1 |
Standards information
- CSS Animations Module Level 3, Section 3.5
Remarks
This property accepts non-integer values. If a non-integer value is specified, the animation terminates mid-cycle.
If "0" is specified, no animation is applied.
If a negative value is specified, the value is ignored and "0" is used instead.
This property cannot be applied to a keyframe.
Do not use the Microsoft vendor prefix ("-ms-") before the Cascading Style Sheets (CSS) animations properties. They are supported unprefixed in Internet Explorer 10 and later.
To learn more about CSS animations, see How to bring your webpage to life with CSS transforms, transitions, and animations.
As of Internet Explorer for Windows Phone 8.1 Update, Internet Explorer for Windows Phone supports "-webkit-iteration-count" as an alias for this property.
Requirements
Minimum supported client |
Windows 8 |
Minimum supported server |
Windows Server 2012 |
Header |
Mshtml.h |
IDL |
Mshtml.idl |
DLL |
Mshtml.dll |
See also
How to bring your webpage to life with CSS transforms, transitions, and animations