Skip to content

Latest commit

 

History

History
 
 

AnimationLibrary

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Animation library (HTML) sample

This sample shows how to use the Animation Library APIs. These functions provide you with the ability to use animations in your Windows Store apps and custom controls that are consistent with animations used by Windows.

The sample demonstrates the following animation scenarios:

  • Bringing an entire page onto the screen, all at one time or as separate parts (enterPage)
  • Transitioning between pages (enterPage/exitPage)
  • Bringing partial page content onto the screen (enterContent)
  • Transitioning partial page content (enterContent/exitContent)
  • Expanding a set of elements to make room for new element, and collapsing the original elements when the new element is removed (createExpandAnimation/createCollapseAnimation)
  • Animating a touch or mouse click response (pointerUp/pointerDown)
  • Adding and removing a list item (createAddToListAnimation/createDeleteToListAnimation)
  • Filtering a list of search results (createAddToSearchListAnimation/createDeleteFromSearchListAnimation)
  • Fading content in and out (fadeIn/fadeOut)
  • Crossfading an element in place (crossFade)
  • Moving an element to a new location (createRepositionAnimation)
  • Dragging and dropping an element (dragSourceStart/dragSourceEnd)
  • Repositioning elements to allow an element to be dropped and restoring those elements when it is not (dragBetweenEnter/dragBetweenLeave)
  • Showing and hiding pop-up UI (showPopup/hidePopup)
  • Showing and hiding edge-based UI (showEdgeUI/hideEdgeUI)
  • Showing and hiding a panel (showPanel/hidePanel)
  • Revealing whether an item supports swipe (swipeReveal)
  • Reacting to a swipe to select or deselect an item (swipeSelect/swipeDeselect)
  • Updating a badge in response to a badge notification (updateBadge)
  • Updating a tile in response to a tile notification (createPeekAnimation)
  • Running custom CSS animations and transitions (executeAnimation/executeTransition)
  • Enabling/disabling animations and checking whether animations are enabled (enableAnimations/disableAnimations/isAnimationEnabled)

This sample is written in HTML, CSS, and JavaScript. For the XAML version, see the XAML personality animations sample and the XAML animations sample.

Note The Universal Windows app samples require Visual Studio 2015 to build and Windows 10 to execute.

To obtain information about Windows 10 development, go to the Windows Dev Center

To obtain information about Microsoft Visual Studio 2015 and the tools for developing Windows apps, go to Visual Studio 2015

Related topics

Concepts

Animating your UI with the Animation Library

Reference

createAddToListAnimation

createAddToSearchListAnimation

createCollapseAnimation

createDeleteFromListAnimation

createDeleteFromSearchListAnimation

createExpandAnimation

createPeekAnimation

createRepositionAnimation

crossFade

disableAnimations

dragBetweenEnter

dragBetweenLeave

dragSourceEnd

dragSourceStart

enableAnimations

enterContent

enterPage

executeAnimation

executeTransition

exitContent

exitPage

fadeIn

fadeOut

hideEdgeUI

hidePanel

hidePopup

isAnimationEnabled

pointerDown

pointerUp

showEdgeUI

showPanel

showPopup

swipeDeselect

swipeReveal

swipeSelect

updateBadge

System requirements

Client: Windows 10

Server: Windows Server 2016 Technical Preview

Phone: Windows 10

Build the sample

  1. If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
  2. Start Microsoft Visual Studio 2015 and select File > Open > Project/Solution.
  3. Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++, C#, or JavaScript). Double-click the Visual Studio 2015 Solution (.sln) file.
  4. Press Ctrl+Shift+B, or select Build > Build Solution.

Run the sample

The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.

Deploying the sample

  • Select Build > Deploy Solution.

Deploying and running the sample

  • To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or select Debug > Start Without Debugging.