Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.74 KB

motion-pointer.md

File metadata and controls

43 lines (26 loc) · 1.74 KB
author Description title ms.assetid ms.author ms.date ms.topic ms.prod ms.technology keywords ms.localizationpriority
mijacobs
Use pointer animations to provide users with visual feedback when the user taps on an item.
Pointer click animations in UWP apps
EEB10A2C-629A-4705-8468-4D019D74DDFF
jimwalk
08/9/2017
article
windows
uwp
windows 10, uwp
medium

Pointer click animations

Use pointer animations to provide users with visual feedback when the user taps on an item. The pointer down animation slightly shrinks and tilts the pressed item, and plays when an item is first tapped. The pointer up animation, which restores the item to its original position, is played when the user releases the pointer.

Important APIs: PointerUpThemeAnimation class, PointerDownThemeAnimation class

Do's and don'ts

  • When you use a pointer up animation, immediately trigger the animation when the user releases the pointer. This provides instant feedback to the user that their action has been recognized, even if the action triggered by the tap (such as navigating to a new page) is slower to respond.

Related articles