So how do I use it?
ArtefactAnimator.AddEase ( object, properties, values, time, ease, delay );
Pretty easy right?
And that’s just the tip of the iceberg. But before you say to yourself, “I’ve already seen something like that before” let’s check out some features…
Features
Easy to use
* Animate multiple properties with just one line of code!
* Use strings as shortcuts to animations like “x”, “y”, “alpha”, and more!
* Extensions help reduce coding time by wrapping common animations.
o SlideTo will animate an UIElement’s Canvas.Top and Canvas.Left properties
o AlphaTo will animate a UIElement’s Opacity
Smooth animations
* Artefact Animator updates every time the UI layer refreshes using CompositionTarget.Rendering. This allows for the most responsive animations possible.
* Limited error checking to increases performance
Easing support
* Includes ported Robert Penner easing equations ( WPF ) ( from DoublePennerAnimation )
* Includes native easing equations ( Silverlight )
* Allows custom easing functions
Custom Animation support ( Advanced )
Read more: Artefact