1278485-1.html (687B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 document.body.animate([], 10 { duration: 6, 11 easing: "cubic-bezier(0, -1e+39, 0, 0)" }); 12 document.body.animate([], 13 { duration: 6, 14 easing: "cubic-bezier(0, 1e+39, 0, 0)" }); 15 document.body.animate([], 16 { duration: 6, 17 easing: "cubic-bezier(0, 0, 0, -1e+39)" }); 18 document.body.animate([], 19 { duration: 6, 20 easing: "cubic-bezier(0, 0, 0, 1e+39)" }); 21 } 22 23 </script> 24 </head> 25 <body onload="boom();"></body> 26 </html>