# anime **Repository Path**: anydev/anime ## Basic Information - **Project Name**: anime - **Description**: 一款功能强大的 JavaScript 动画引擎,支持时间轴功能,兼容 CSS、SVG 和 DOM 的大部分属性动画。它能够实现位移、旋转、缩放、颜色变化等多种动画效果,适用于网站的加载动画、交互式按钮动画、SVG 图表动画等场景。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-03 - **Last Updated**: 2026-02-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Anime.js
Anime.js is a fast, multipurpose and lightweight JavaScript animation library with a simple, yet powerful API.
It works with CSS properties, SVG, DOM attributes and JavaScript Objects.
|
|
|
|
|
|
|
|
|
| ```javascript import { animate, stagger, } from 'animejs'; animate('.square', { x: 320, rotate: { from: -180 }, duration: 1250, delay: stagger(65, { from: 'center' }), ease: 'inOutQuint', loop: true, alternate: true }); ``` |
|