如何将屏幕分辨率乘以 80% 然后在代码中使用
How to multiply screen resolution by 80% then use in code
<script type="text/javascript">
Some javascript code here * 80%
</script>
<div style="height:80% of user's availHeight here">
My content
</div>
我知道它很简短,但希望它能解释我正在寻找的内容。非常感谢很多帮助。谢谢你! :)
只是指出 screen
分辨率与浏览器 window 可用高度/宽度(几乎)无关。
如果你擅长CSS3,你可以使用vh
unit
<div style="height: 80vh;"> I'm 80% of user's availHeight here </div>
现在让我们从字面上回答你的问题:
How to multiply screen resolution by 80% then use in code
var screenW = screen.width; // Number of px of Physical screen width
var screenH = screen.height; // Number of px of Physical screen height
你现在有你的屏幕尺寸值,乘以并做任何你需要的。
<script type="text/javascript">
Some javascript code here * 80%
</script>
<div style="height:80% of user's availHeight here">
My content
</div>
我知道它很简短,但希望它能解释我正在寻找的内容。非常感谢很多帮助。谢谢你! :)
只是指出 screen
分辨率与浏览器 window 可用高度/宽度(几乎)无关。
如果你擅长CSS3,你可以使用vh
unit
<div style="height: 80vh;"> I'm 80% of user's availHeight here </div>
现在让我们从字面上回答你的问题:
How to multiply screen resolution by 80% then use in code
var screenW = screen.width; // Number of px of Physical screen width
var screenH = screen.height; // Number of px of Physical screen height
你现在有你的屏幕尺寸值,乘以并做任何你需要的。