0.0.2 • Published 7 years ago

ember-animejs v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

npm version Build Status

ember-animejs

An Ember.js wrapper for the animation library anime.js.

installation

ember install ember-animejs

usage

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.