WinJS.UI.Animation.continuumBackwardIn function

Scales down an incoming page while scaling, rotating (counterclockwise), and translating an incoming item into place.
Syntax
WinJS.UI.Animation.continuumBackwardIn(incomingPage, incomingItem).done( /* Your success and error handlers */ );
Parameters
- incomingPage
-
Type: Object
A single element to be scaled down that is the page root and contains the incoming item.
- incomingItem
-
Type: Object
A single element to be scaled, rotated, and translated into its final position on the page.
Return value
Type: Promise
An object that returns when the animation has finished.
Remarks
The incomingPage and incomingItem parameters of this function can be expressed in several ways:
- As the special value "undefined", which means that the animation has no such target
- As a single object
- As a JavaScript array (possibly empty), in which each element of the array can be a single element or a JavaScript array of elements.
- As a NodeList (for example, the result of querySelectorAll)
- As an HTMLCollection
Requirements
|
Minimum WinJS version |
WinJS 1.0 |
|---|---|
|
Namespace |
WinJS.UI.Animation |
See also