transitionDuration property
Gets or sets one or more values that specify the durations of transitions on a set of corresponding object properties identified in the IHTMLCSSStyleDeclaration2::transitionProperty property.
This property is read/write.
Syntax
HRESULT put_transitionDuration(
[in] BSTR v
);
HRESULT get_transitionDuration(
[out, retval] BSTR *p
);
Property values
Type: BSTR
One or more transition times, separated by commas.
String format
<time> [ , <time> ] *
CSS information
Applies To | all elements, :before and :after pseudo elements |
Media | interactive |
Inherited | no |
Initial Value | 0 |
Standards information
- CSS Transitions Module Level 3, Section 2.2
Remarks
Transitions respect Cascading Style Sheets (CSS) box model constraints such as IHTMLStyle5::minWidth.
For example, if an element is declared with a IHTMLStyle5::minWidth value of "50px" then a transition to a width of "25px" is not valid. In a case such as this, the transition runs for the specified duration from the start value until a valid maximum or minimum end value, as appropriate.
Do not use the Microsoft vendor prefix ("-ms-") before the transition properties. They are supported unprefixed in Internet Explorer 10 and later.
To learn more about CSS transitions in Windows Internet Explorer, 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-transition-duration" 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