Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A basic Anime.js program that animates a div element moving horizontally and scaling up.
# animejs/demo/index.html
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
</head>
<body>
<div id="box" style="width:100px;height:100px;background:red;"></div>
<script>
anime({
targets: '#box',
x: 250,
scale: 1.5,
duration: 2000,
easing: 'easeInOutQuad'
});
</script>
</body>
</html>Anime.js is a lightweight JavaScript animation library that enables developers to create smooth, complex, and performant animations on the web. It works with CSS properties, SVG, DOM attributes, and JavaScript objects.
Origin & Creator
Anime.js was created by Julian Garnier in 2015 as a lightweight, versatile animation library for the web.
Industrial Note
Anime.js is widely used for interactive web applications, marketing pages, dashboards, data visualizations, micro-interactions, and SVG-based animations.