1028514-1.html (329B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 document.documentElement.style.animation = "137438953471s bounce"; 10 document.documentElement.offsetHeight; 11 document.documentElement.style.animationIterationCount = "infinite"; 12 } 13 14 </script> 15 </head> 16 17 <body onload="boom();"></body> 18 </html>