このスクリプトから、ブラウザ ウィンドウから幅と高さを取得しました。このサイズの html の背景画像を 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;
}
}