zl程序教程

您现在的位置是:首页 >  后端

当前栏目

JS测试显示屏分辨率以及屏幕尺寸的方法

JS方法测试 以及 屏幕 分辨率 尺寸 显示屏
2023-06-13 09:15:12 时间
如何用JS特效显示自己的屏幕分辨率以及屏幕尺寸呢?请看下面一段代码:
复制代码代码如下:

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
<title>JS测试显示器分辨率</title>
</head>
<body>
<divstyle="width:1cm;"id="hutia"></div>
<SCRIPTLANGUAGE="JavaScript">
document.write("您的显示器分辨率为:\n"+screen.width+"*"+screen.height+"pixels<br/>");
varww=document.getElementById("hutia").offsetWidth,w=screen.width/ww,h=screen.height/ww,r=Math.round(Math.sqrt(w*w+h*h)/2.54);
document.write("您的显示器尺寸为:\n"+(screen.width/ww).toFixed(1)+"*"+(screen.height/ww).toFixed(1)+"cm,"+r+"寸<br/>");
</SCRIPT>
</body>
</html>