fipamo/themes/default-dark/src/com/tools/effects/Animate.jsx

24 lines
551 B
React
Raw Normal View History

2018-10-31 12:00:31 -04:00
import EventEmitter from '../events/EventEmitter.jsx';;
class Animate extends EventEmitter {
//--------------------------
// constructor
//--------------------------
constructor() {
super();
}
//--------------------------
// methods
//--------------------------
object(properties) {
var animation = anime(
properties
);
//animation.start(properties);
}
//--------------------------
// event handlers
//--------------------------
}
export default Animate