UNPKG

animatable-js

Version:

This package allows easy and light implementation of linear or curved animation in javascript. (Especially suitable in a development environment on web components or canvas.)

14 lines (13 loc) 405 B
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Animatable JS Test</title> <script type="module" src="index.js" defer></script> </head> <body> <div id="text">None</div> <div id="box" style="display: inline-block; height: 100px; background-color: red;"></div> </body> </html>