15 lines
268 B
HTML
15 lines
268 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function start() {
|
|
const element = document.createElement('img')
|
|
element.animate([
|
|
{ 'easing': '' },
|
|
{ 'offset': 'o' },
|
|
], {})
|
|
}
|
|
|
|
window.addEventListener('load', start)
|
|
</script>
|
|
</head>
|
|
</html>
|