もっと"Try it Yourself"以下の例。
定義と使用法
widthプロパティは、ピクセル単位で、ユーザの画面の幅の合計を返します。
ヒント:使用し、高さ 、ユーザーの画面の高さの合計を取得するプロパティを。
ブラウザのサポート
プロパティ | |||||
---|---|---|---|---|---|
width | はい | はい | はい | はい | はい |
構文
screen.width
技術的な詳細
戻り値: | ピクセル単位でユーザの画面の全体の幅を表す数値、 |
---|
その他の例
例
一例では、すべての画面のプロパティ:
var txt = "";
txt += "<p>Total width/height: " + screen.width + "*" +
screen.height + "</p>";
txt += "<p>Available width/height: " +
screen.availWidth + "*" + screen.availHeight + "</p>";
txt += "<p>Color
depth: " + screen.colorDepth + "</p>";
txt += "<p>Color resolution: " +
screen.pixelDepth + "</p>";
»それを自分で試してみてください <画面オブジェクト