15 lines
324 B
HTML
15 lines
324 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
window.onload = function() {
|
|
img = document.querySelector(".animated-image")
|
|
const staticImage = new Image();
|
|
staticImage.src = img.src;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<img class="animated-image" src="1763581-1.sjs">
|
|
</body>
|
|
</html>
|