blob: bbe7f3ba5031482595612e0a3bef67a8f4b4250a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|