804323-1.html (521B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <style> 5 body { margin:0; padding:0; overflow:hidden; } 6 #new { 7 position: absolute; 8 left: 100px; 9 top: 100px; 10 width: 100px; 11 height: 100px; 12 background: yellow; 13 } 14 </style> 15 </head> 16 <body> 17 <div id="new" style="display:none"></div> 18 <script> 19 document.body.getBoundingClientRect().height; 20 document.body.style.transform = "translateX(100px)"; 21 document.body.getBoundingClientRect().width; 22 document.getElementById("new").style.display = ""; 23 </script> 24 </body> 25 </html>