Works best with Editable Shapes and PNGs

Animation

Edit the following in Page > HTML code (body):

<script> var path = anime.path('.curve path'); var action = { targets: '.shape', translateX: path('x'), translateY: path('y'), rotate: path('angle'), scale: (a) => { return (path('x') / path ('y')) }, delay: anime.stagger(200, {start: 10}), endDelay: 750, duration: 25000, easing: 'linear', loop: true, }; anime(action); </script>