mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-06 09:29:35 +00:00
19 lines
329 B
HTML
19 lines
329 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.style.animation = "137438953471s bounce";
|
|
document.documentElement.offsetHeight;
|
|
document.documentElement.style.animationIterationCount = "infinite";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|