从这个脚本中,我得到了浏览器窗口的宽度和高度。我想将 html 中的 backgroundimage 设置为 thissize 的 100%。(无论屏幕尺寸如何)。其他元素(导航栏、文本、图片或 svg)必须根据大小进行调整。
--> 我想要任何时候都没有滚动条:)
window.onload = function ()
{
// initale Breite und Höhe des Browserfensters
var iWidth = window.innerWidth || (window.document.documentElement.clientWidth || window.document.body.clientWidth);
var iHeight = window.innerHeight || (window.document.documentElement.clientHeight || window.document.body.clientHeight);
var bWin = document.getElementById('bWin');
bWin.innerHTML = "Fensterbreite " + iWidth + " <br />Fensterhöhe " + iHeight;
window.onresize = function (evt)
{
var width = window.innerWidth || (window.document.documentElement.clientWitdh || window.document.body.clientWidth);
var height = window.innerHeight || (window.document.documentElement.clientHeight || window.document.body.clientHeight);
var bWin = document.getElementById('bWin');
bWin.innerHTML = "Aktuelle Breite " + width + " <br />Aktuelle Höhe " + height;
}
}