- Source:
Entry point for animation.
Example
Craft.Core.Transition.animate({
element : this.view.getElementById('anim_target');,
properties : {
top : '100px',
left : '150px',
},
duration : 200, // number (msec)
ease : 'ease-in',
callback : () => {
console.log('animation ended');
}
});
Methods
(static) animate(options)
- Source:
Make animation
Parameters:
Name | Type | Description | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object | animation paramaters Properties
|