1350372.html (738B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 function boom(){ 7 let root = document.documentElement, 8 inp = document.createElement("input"), 9 aud = document.createElement("audio"), 10 vid = document.createElement("video"); 11 inp.type = "image"; 12 document.body.appendChild(inp); 13 document.body.appendChild(aud); 14 document.body.appendChild(vid); 15 root.style.columnWidth = "0px"; 16 setTimeout(function(){ 17 inp.style.display = "contents"; 18 setTimeout(function(){ 19 inp.remove(); 20 inp.appendChild(vid); 21 setTimeout(function(){ 22 root.style.strokeWidth = "0px"; 23 }, 10); 24 }, 10); 25 }, 10); 26 } 27 addEventListener("DOMContentLoaded", boom); 28 </script> 29 </head> 30 <body></body> 31 </html>