Information
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.pointerUp function

Applies to Windows and Windows Phone

Performs an animation when a pointer is released.

The following video demonstrates the pointer up and down animations:

Syntax


WinJS.UI.Animation.pointerUp(element).done( /* Your success and error handlers */ );

Parameters

element

Type: Object

Element or elements that the pointer was pressed on.

Return value

Type: Promise

An object that completes when the animation is finished.

Remarks

The element 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

pointerDown
Animating pointer clicks
Guidelines and checklist for pointer click animations
HTML animation library sample

 

 

Show: