The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
WinJS.UI.Animation.dragBetweenLeave function

Performs an animation when a dragged object is moved away from items that it had previously involved in a dragBetweenEnter animation. The affected objects are animated back to their original positions.
The following video demonstrates the drag animations:
Syntax
WinJS.UI.Animation.dragBetweenLeave(target).done( /* Your success and error handlers */ );
Parameters
- target
-
Type: Object
Element or elements that the dragged object would no longer cause to be displaced, due to its moving away. This should be the same element or element collection passed as the target parameter in the dragBetweenEnter animation.
Return value
Type: Promise
An object that completes when the animation is finished.
Remarks
The target parameter 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
- dragBetweenEnter
- Animating drag-and-drop sequences
- Guidelines and checklist for drag-and-drop animations
- HTML animation library sample
Show: