transitionTimingFunction property
Gets or sets one or more values that specify the intermediate property values to be used during a transition on a set of corresponding object properties identified in the IHTMLCSSStyleDeclaration::transitionProperty property.
This property is read/write.
Syntax
HRESULT put_transitionTimingFunction(
[in] BSTR v
);
HRESULT get_transitionTimingFunction(
[out, retval] BSTR *p
);
Property values
Type: BSTR
One or more animation timing functions, separated by commas.
String format
cubic-bezier | ease | linear | ease-in | ease-out | ease-in-out | steps | step-start | step-end [ , cubic-bezier | ease | linear | ease-in | ease-out | ease-in-out | steps | step-start | step-end ] *
CSS information
Applies To | all elements, :before and :after pseudo elements |
Media | interactive |
Inherited | no |
Initial Value | ease |
Standards information
- CSS Transitions Module Level 3, Section 2.3
Remarks
Values are rounded up to the second decimal place.
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 Cascading Style Sheets (CSS) transitions in Windows Internet Explorer, see How to bring your webpage to life with CSS transforms, transitions, and animations.
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