1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<html> <head> <script> function start() { const element = document.createElement('img') element.animate([ { 'easing': '' }, { 'offset': 'o' }, ], {}) } window.addEventListener('load', start) </script> </head> </html>