All Projects → juliangarnier → Anime

juliangarnier / Anime

Licence: mit
JavaScript animation engine

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Anime

Reimg
reimg - A javascript library for converting image formats
Stars: ✭ 106 (-99.74%)
Mutual labels:  svg, canvas, javascript-library
Svg World Map
🗺 A JavaScript library to easily integrate one or more SVG world maps with all nations (countries) and second-level political subdivisions (countries, provinces, states).
Stars: ✭ 38 (-99.91%)
Mutual labels:  svg, javascript-library
Graphicsjs
A lightweight JavaScript graphics library with the intuitive API, based on SVG/VML technology.
Stars: ✭ 937 (-97.72%)
Mutual labels:  svg, javascript-library
Zdog
Flat, round, designer-friendly pseudo-3D engine for canvas & SVG
Stars: ✭ 8,904 (-78.32%)
Mutual labels:  svg, canvas
Wind Js
An demo animation of wind on a Canvas layer in the JSAPI
Stars: ✭ 548 (-98.67%)
Mutual labels:  canvas, javascript-library
Html To Image
✂️ Generates an image from a DOM node using HTML5 canvas and SVG.
Stars: ✭ 595 (-98.55%)
Mutual labels:  svg, canvas
Calendar Graph
Calendar graph like github using jsx support SVG, Canvas and SSR
Stars: ✭ 58 (-99.86%)
Mutual labels:  svg, canvas
Cheetah Grid
The fastest open-source data table for web.
Stars: ✭ 417 (-98.98%)
Mutual labels:  canvas, javascript-library
Nivo
nivo provides a rich set of dataviz components, built on top of the awesome d3 and React libraries
Stars: ✭ 9,550 (-76.74%)
Mutual labels:  svg, canvas
Ditherjs
A javascript library which dithers an <img> using a fixed palette
Stars: ✭ 76 (-99.81%)
Mutual labels:  canvas, javascript-library
Waveforms
An interactive, explorable explanation about the peculiar magic of sound waves.
Stars: ✭ 1,218 (-97.03%)
Mutual labels:  svg, canvas
People You Should Follow On Codepen
People You Should Follow on CodePen
Stars: ✭ 542 (-98.68%)
Mutual labels:  svg, canvas
Zrender
A lightweight graphic library providing 2d draw for Apache ECharts
Stars: ✭ 5,122 (-87.53%)
Mutual labels:  svg, canvas
Jcanvas
A jQuery plugin that makes the HTML5 canvas easy to work with.
Stars: ✭ 612 (-98.51%)
Mutual labels:  canvas, javascript-library
Pts
A library for visualization and creative-coding
Stars: ✭ 4,628 (-88.73%)
Mutual labels:  svg, canvas
Deep Viz
A React component library, providing concise and beautiful diversity charts with Canvas, SVG, E-map, WebGL, Dom, based on data visualization experience and commercial data display practice.
Stars: ✭ 55 (-99.87%)
Mutual labels:  svg, canvas
Easycanvas
数据驱动、2D&3D、渐进式Canvas库,支持JSX,配备Chrome调试插件,支持微信小游戏、物理引擎等。
Stars: ✭ 281 (-99.32%)
Mutual labels:  canvas, javascript-library
Taro
A lightweight 3D game engine for the web.
Stars: ✭ 345 (-99.16%)
Mutual labels:  svg, canvas
Pasition
Path Transition with little JS code, render to anywhere - 轻量级 Path 过渡库,渲染到任何地方
Stars: ✭ 1,149 (-97.2%)
Mutual labels:  svg, canvas
Vega
A visualization grammar.
Stars: ✭ 9,554 (-76.73%)
Mutual labels:  svg, canvas


anime.js

JavaScript animation engine | animejs.com

npm version npm downloads

Anime.js (/ˈæn.ə.meɪ/) is a lightweight JavaScript animation library with a simple, yet powerful API.
It works with CSS properties, SVG, DOM attributes and JavaScript Objects.

Getting started | Documentation | Demos and examples | Browser support

Getting started

Download

Via npm

$ npm install animejs --save

or manual download.

Usage

ES6 modules

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

CommonJS

const anime = require('animejs');

File include

Link anime.min.js in your HTML :

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

Hello world

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

Documentation

Demos and examples

Browser support

Chrome Safari IE / Edge Firefox Opera
24+ 8+ 11+ 32+ 15+

anime-js-v3-logo

Website | Documentation | Demos and examples | MIT License | © 2019 Julian Garnier.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].