An Ember.js wrapper for the animation library anime.js.
ember install ember-animejs
import anime from 'ember-animejs';
export default Ember.Component.extend({
didInsertElement() {
this._super(...arguments);
anime({
targets: this.element,
translateX: '100px'
});
}
});
For more information on the animejs
api, check out their documentation.