Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 750 Bytes

README.md

File metadata and controls

52 lines (36 loc) · 750 Bytes

Important

🎉 A simple cover Anime.js V4🎉

simple-assi-animation (/ˈæn.ə.meɪ/) is a lightweight JavaScript animation library with a simple

Getting started

Download

Via npm

$ npm install simple-assi-animation --save

Usage

ES6 modules

import anime from 'animejs/lib/animation.es.js';

CommonJS

const anime = require('animejs');

File include

Link animation.min.js in your HTML :

<script src="animation.min.js"></script>

Hello world

anime({
  targets: 'div',
  translateX: 250,
  rotate: '1turn',
  backgroundColor: '#FFF',
  duration: 800
});