blob: a9779ba70f3c46d5174825c18d629f6e2f36e678 (
plain)
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': '' },
123,
], {})
}
window.addEventListener('load', start)
</script>
</head>
</html>
|