运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Screen Object</h1> <h2>Screen Properties</h2> <div id="demo"></div> <script> let text = "Total width/height: " + screen.width + "*" + screen.height + "<br>" + "Available width/height: " + screen.availWidth + "*" + screen.availHeight + "<br>" + "Color depth: " + screen.colorDepth + "<br>" + "Color resolution: " + screen.pixelDepth; document.getElementById("demo").innerHTML = text; </script> </body> </html>