私は得ることができますどのようにwindowWidth
、windowHeight
、pageWidth
、pageHeight
、screenWidth
、screenHeight
、pageX
、pageY
、screenX
、screenY
これはすべての主要なブラウザで動作しますか?
私は得ることができますどのようにwindowWidth
、windowHeight
、pageWidth
、pageHeight
、screenWidth
、screenHeight
、pageX
、pageY
、screenX
、screenY
これはすべての主要なブラウザで動作しますか?
回答:
jQueryを使用してウィンドウまたはドキュメントのサイズを取得できます。
// Size of browser viewport.
$(window).height();
$(window).width();
// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();
画面サイズについては、screen
オブジェクトを使用できます。
window.screen.height;
window.screen.width;
46
するようで、css( 'height')("46px"
)のような文字列ではなく数値()を返します。
これはあなたが知る必要があるすべてを持っています:ビューポート/ウィンドウサイズを取得する
要するに:
var win = window,
doc = document,
docElem = doc.documentElement,
body = doc.getElementsByTagName('body')[0],
x = win.innerWidth || docElem.clientWidth || body.clientWidth,
y = win.innerHeight|| docElem.clientHeight|| body.clientHeight;
alert(x + ' × ' + y);
この回答の編集を中止してください。現在、コード形式の設定に合わせて、さまざまな人が22回編集しています。最近のブラウザーのみを対象とする場合、これは必要ではないことも指摘されています。必要な場合は、次のものが必要です。
const width = window.innerWidth || document.documentElement.clientWidth ||
document.body.clientWidth;
const height = window.innerHeight|| document.documentElement.clientHeight||
document.body.clientHeight;
console.log(width, height);
g = document.body
?
document.body
。
以下は、純粋なJavaScript(Source)を使用したクロスブラウザソリューションです。
var width = window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;
var height = window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
body element
値を返すため、これはより良い方法undefined
です。
利用可能な画面サイズを取得する非jQueryの方法。window.screen.width/height
すでに立てられていますが、レスポンシブなウェブデザインと完全性のために、これらの属性に言及する価値があると思います:
alert(window.screen.availWidth);
alert(window.screen.availHeight);
http://www.quirksmode.org/dom/w3c_cssom.html#t10:
availWidthおよびavailHeight-画面で使用可能な幅と高さ(OSタスクバーなどを除く)。
window.screen.availHeight
全画面モードを想定しているため、通常の画面モードでは強制的にスクロールします(FirefoxおよびChromeでテスト済み)。
window.screen.height
代わりに使用します。
しかし、レスポンシブ画面について話しているとき、そして何らかの理由でjQueryを使用してそれを処理したい場合は、
window.innerWidth, window.innerHeight
正しい測定値を与えます。それでもスクロールバーの余分なスペースが削除され、そのスペースを調整することを心配する必要はありません:)
window.innerWidth
そしてwindow.innerHeight
スクロールバーのサイズを考慮に入れることができません。スクロールバーが存在する場合、これらのメソッドはほぼすべてのデスクトップブラウザーのウィンドウサイズに対して誤った結果を返します。stackoverflow.com/a/31655549/508355を
また、ブラウザのツールバーやその他のものを避けて、ウィンドウの幅と高さを取得できます。それは、ブラウザのウィンドウ内の実際の使用可能な領域。
これを行うには、:window.innerWidth
とwindow.innerHeight
プロパティを使用
し ます(w3schoolsのドキュメントを参照)。
ほとんどの場合、たとえば、完全に中央に配置されたフローティングモーダルダイアログを表示するのが最良の方法です。ブラウザを使用している解像度の向きやウィンドウサイズに関係なく、ウィンドウ上の位置を計算できます。
function wndsize(){
var w = 0;var h = 0;
//IE
if(!window.innerWidth){
if(!(document.documentElement.clientWidth == 0)){
//strict mode
w = document.documentElement.clientWidth;h = document.documentElement.clientHeight;
} else{
//quirks mode
w = document.body.clientWidth;h = document.body.clientHeight;
}
} else {
//w3c
w = window.innerWidth;h = window.innerHeight;
}
return {width:w,height:h};
}
function wndcent(){
var hWnd = (arguments[0] != null) ? arguments[0] : {width:0,height:0};
var _x = 0;var _y = 0;var offsetX = 0;var offsetY = 0;
//IE
if(!window.pageYOffset){
//strict mode
if(!(document.documentElement.scrollTop == 0)){offsetY = document.documentElement.scrollTop;offsetX = document.documentElement.scrollLeft;}
//quirks mode
else{offsetY = document.body.scrollTop;offsetX = document.body.scrollLeft;}}
//w3c
else{offsetX = window.pageXOffset;offsetY = window.pageYOffset;}_x = ((wndsize().width-hWnd.width)/2)+offsetX;_y = ((wndsize().height-hWnd.height)/2)+offsetY;
return{x:_x,y:_y};
}
var center = wndcent({width:350,height:350});
document.write(center.x+';<br>');
document.write(center.y+';<br>');
document.write('<DIV align="center" id="rich_ad" style="Z-INDEX: 10; left:'+center.x+'px;WIDTH: 350px; POSITION: absolute; TOP: '+center.y+'px; HEIGHT: 350px"><!--К сожалению, у Вас не установлен flash плеер.--></div>');
「コンソール」を使用して、または「検査」をクリックした後、任意のWebサイトの現在ロードされているページの高さと幅を確認します。
ステップ1:マウスの右ボタンをクリックし、[検査]をクリックして、[コンソール]をクリックします
ステップ2:ブラウザの画面が「最大化」モードになっていないことを確認します。ブラウザ画面が「最大化」モードの場合は、最初に最大化ボタン(右上または左上隅にある)をクリックして、最大化を解除する必要があります。
ステップ3:次に、大なり記号( '>')の後に次のように記述します。
> window.innerWidth
output : your present window width in px (say 749)
> window.innerHeight
output : your present window height in px (say 359)
ドキュメントの幅と高さについて真の防弾ソリューションが必要な場合( pageWidth
とpageHeight
)には、私のプラグインであるjQuery.documentSizeの使用を検討してください。
これには1つの目的しかありません。jQueryやその他のメソッドが失敗した場合でも、常に正しいドキュメントサイズを返すことです。その名前にもかかわらず、必ずしもjQueryを使用する必要はありません。それはバニラJavaScriptで記述されており、jQueryなしでも機能します。
使用法:
var w = $.documentWidth(),
h = $.documentHeight();
グローバルのためにdocument
。他のドキュメントの場合、たとえば、アクセスできる埋め込みiframeでは、ドキュメントをパラメーターとして渡します。
var w = $.documentWidth( myIframe.contentDocument ),
h = $.documentHeight( myIframe.contentDocument );
更新:ウィンドウの寸法も変更
バージョン1.1.0以降、jQuery.documentSizeはウィンドウの寸法も処理します。
それが必要なのは
$( window ).height()
iOSではバグがあり、役に立たないほど$( window ).width()
モバイルズームの効果を処理しないため、モバイルで$( window ).height()
は信頼できません。jQuery.documentSizeは$.windowWidth()
およびを提供し$.windowHeight()
、これらの問題を解決します。詳しくは、ドキュメントをご覧ください。
サイズの表示に使用できる小さなJavaScriptブックマークレットを書きました。簡単にブラウザに追加でき、クリックするたびにブラウザウィンドウの右隅にサイズが表示されます。
ここには、ブックマークレットの使用方法に関する情報があります 。https://en.wikipedia.org/wiki/Bookmarklet
javascript:(function(){!function(){var i,n,e;return n=function(){var n,e,t;return t="background-color:azure; padding:1rem; position:fixed; right: 0; z-index:9999; font-size: 1.2rem;",n=i('<div style="'+t+'"></div>'),e=function(){return'<p style="margin:0;">width: '+i(window).width()+" height: "+i(window).height()+"</p>"},n.html(e()),i("body").prepend(n),i(window).resize(function(){n.html(e())})},(i=window.jQuery)?(i=window.jQuery,n()):(e=document.createElement("script"),e.src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js",e.onload=n,document.body.appendChild(e))}()}).call(this);
元のコードはコーヒーにあります:
(->
addWindowSize = ()->
style = 'background-color:azure; padding:1rem; position:fixed; right: 0; z-index:9999; font-size: 1.2rem;'
$windowSize = $('<div style="' + style + '"></div>')
getWindowSize = ->
'<p style="margin:0;">width: ' + $(window).width() + ' height: ' + $(window).height() + '</p>'
$windowSize.html getWindowSize()
$('body').prepend $windowSize
$(window).resize ->
$windowSize.html getWindowSize()
return
if !($ = window.jQuery)
# typeof jQuery=='undefined' works too
script = document.createElement('script')
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'
script.onload = addWindowSize
document.body.appendChild script
else
$ = window.jQuery
addWindowSize()
)()
基本的にコードは、ウィンドウのサイズを変更すると更新される小さなdivを先頭に追加します。
レスポンシブレイアウトに関連するいくつかのケース$(document).height()
では、ビューポートの高さのみを表示する誤ったデータを返すことがあります。たとえば、div#wrapperの高さが100%の場合、その#wrapperはその中のブロックによって引き伸ばすことができます。しかし、それでも高さはビューポートの高さのようになります。このような状況では、使用する可能性があります
$('#wrapper').get(0).scrollHeight
これはラッパーの実際のサイズを表します。
画面サイズに関する完全なガイド
JavaScript
高さ:
document.body.clientHeight // Inner height of the HTML document body, including padding
// but not the horizontal scrollbar height, border, or margin
screen.height // Device screen height (i.e. all physically visible stuff)
screen.availHeight // Device screen height minus the operating system taskbar (if present)
window.innerHeight // The current document's viewport height, minus taskbars, etc.
window.outerHeight // Height the current window visibly takes up on screen
// (including taskbars, menus, etc.)
注:ウィンドウが最大化されている場合、これはscreen.availHeightと等しくなります。
幅について:
document.body.clientWidth // Full width of the HTML page as coded, minus the vertical scroll bar
screen.width // Device screen width (i.e. all physically visible stuff)
screen.availWidth // Device screen width, minus the operating system taskbar (if present)
window.innerWidth // The browser viewport width (including vertical scroll bar, includes padding but not border or margin)
window.outerWidth // The outer window width (including vertical scroll bar,
// toolbars, etc., includes padding and border but not margin)
jquery
高さ:
$(document).height() // Full height of the HTML page, including content you have to
// scroll to see
$(window).height() // The current document's viewport height, minus taskbars, etc.
$(window).innerHeight() // The current document's viewport height, minus taskbars, etc.
$(window).outerHeight() // The current document's viewport height, minus taskbars, etc.
幅について:
$(document).width() // The browser viewport width, minus the vertical scroll bar
$(window).width() // The browser viewport width (minus the vertical scroll bar)
$(window).innerWidth() // The browser viewport width (minus the vertical scroll bar)
$(window).outerWidth() // The browser viewport width (minus the vertical scroll bar)
リファレンス:https : //help.optimizely.com/Build_Campaigns_and_Experiments/Use_screen_measurements_to_design_for_sensitive_breakpoints
デスクトップとモバイルブラウザーの実際のビューポートサイズを知るためのライブラリを開発しました。ビューポートサイズはデバイス間で一貫性がなく、その投稿のすべての回答に依存できないためです(これについて行ったすべての調査によると):https:// github .com / pyrsmk / W
ウィンドウと内部コンテンツのサイズを変更するときに、幅/高さの変化を確認する必要がある場合があります。
そのために、すべてのサイズ変更とほぼ即座に更新を動的に監視するログボックスを追加する小さなスクリプトを作成しました。
固定位置と高Zインデックスを持つ有効なHTMLを追加しますが、十分に小さいため、次のことができます。
テスト済み:Chrome 40、IE11、ただし他の/古いブラウザーでも動作する可能性が高い... :)
function gebID(id){ return document.getElementById(id); }
function gebTN(tagName, parentEl){
if( typeof parentEl == "undefined" ) var parentEl = document;
return parentEl.getElementsByTagName(tagName);
}
function setStyleToTags(parentEl, tagName, styleString){
var tags = gebTN(tagName, parentEl);
for( var i = 0; i<tags.length; i++ ) tags[i].setAttribute('style', styleString);
}
function testSizes(){
gebID( 'screen.Width' ).innerHTML = screen.width;
gebID( 'screen.Height' ).innerHTML = screen.height;
gebID( 'window.Width' ).innerHTML = window.innerWidth;
gebID( 'window.Height' ).innerHTML = window.innerHeight;
gebID( 'documentElement.Width' ).innerHTML = document.documentElement.clientWidth;
gebID( 'documentElement.Height' ).innerHTML = document.documentElement.clientHeight;
gebID( 'body.Width' ).innerHTML = gebTN("body")[0].clientWidth;
gebID( 'body.Height' ).innerHTML = gebTN("body")[0].clientHeight;
}
var table = document.createElement('table');
table.innerHTML =
"<tr><th>SOURCE</th><th>WIDTH</th><th>x</th><th>HEIGHT</th></tr>"
+"<tr><td>screen</td><td id='screen.Width' /><td>x</td><td id='screen.Height' /></tr>"
+"<tr><td>window</td><td id='window.Width' /><td>x</td><td id='window.Height' /></tr>"
+"<tr><td>document<br>.documentElement</td><td id='documentElement.Width' /><td>x</td><td id='documentElement.Height' /></tr>"
+"<tr><td>document.body</td><td id='body.Width' /><td>x</td><td id='body.Height' /></tr>"
;
gebTN("body")[0].appendChild( table );
table.setAttribute(
'style',
"border: 2px solid black !important; position: fixed !important;"
+"left: 50% !important; top: 0px !important; padding:10px !important;"
+"width: 150px !important; font-size:18px; !important"
+"white-space: pre !important; font-family: monospace !important;"
+"z-index: 9999 !important;background: white !important;"
);
setStyleToTags(table, "td", "color: black !important; border: none !important; padding: 5px !important; text-align:center !important;");
setStyleToTags(table, "th", "color: black !important; border: none !important; padding: 5px !important; text-align:center !important;");
table.style.setProperty( 'margin-left', '-'+( table.clientWidth / 2 )+'px' );
setInterval( testSizes, 200 );
編集:スタイルはすべてのテーブルではなくロガーテーブル要素にのみ適用されるようになりました-これはjQueryを使わないソリューションです:)
ES2020の導入によりglobalThis
、次のようなプロパティを使用できます。
画面サイズの場合:
globalThis.screen.availWidth
globalThis.screen.availHeight
ウィンドウサイズについて
globalThis.outerWidth
globalThis.outerHeight
オフセットの場合:
globalThis.pageXOffset
globalThis.pageYOffset
...&など。
alert("Screen Width: "+ globalThis.screen.availWidth +"\nScreen Height: "+ globalThis.screen.availHeight)
画面を使用できますこれを取得オブジェクトを。
以下は、返されるものの例です。
Screen {
availWidth: 1920,
availHeight: 1040,
width: 1920,
height: 1080,
colorDepth: 24,
pixelDepth: 24,
top: 414,
left: 1920,
availTop: 414,
availLeft: 1920
}
screenWidth
変数を取得するにはscreen.width
、と同じように使用し、と同じscreenHeight
ように使用しますscreen.height
。
ウィンドウの幅と高さを取得するにはscreen.availWidth
、screen.availHeight
それぞれまたはになります。
以下のためにpageX
とpageY
、変数、使用window.screenX or Y
。これは非常に左/上から左/上からの画面です。したがって、幅のある2つの画面がある場合1920
、右側の画面の左側から500pxのウィンドウのX値は2420
(1920 + 500)になります。screen.width/height
ただし、現在の画面の幅または高さを表示します。
ページの幅と高さを取得するには、jQuery $(window).height()
または$(window).width()
。
再びjQueryを使用$("html").offset().top
し$("html").offset().left
て、pageX
andとのpageY
値を使用します。
// innerWidth
const screen_viewport_inner = () => {
let w = window,
i = `inner`;
if (!(`innerWidth` in window)) {
i = `client`;
w = document.documentElement || document.body;
}
return {
width: w[`${i}Width`],
height: w[`${i}Height`]
}
};
// outerWidth
const screen_viewport_outer = () => {
let w = window,
o = `outer`;
if (!(`outerWidth` in window)) {
o = `client`;
w = document.documentElement || document.body;
}
return {
width: w[`${o}Width`],
height: w[`${o}Height`]
}
};
// style
const console_color = `
color: rgba(0,255,0,0.7);
font-size: 1.5rem;
border: 1px solid red;
`;
// testing
const test = () => {
let i_obj = screen_viewport_inner();
console.log(`%c screen_viewport_inner = \n`, console_color, JSON.stringify(i_obj, null, 4));
let o_obj = screen_viewport_outer();
console.log(`%c screen_viewport_outer = \n`, console_color, JSON.stringify(o_obj, null, 4));
};
// IIFE
(() => {
test();
})();
これは、React JS Projectで画面幅を取得する方法です。
幅が1680の場合は570を返し、それ以外の場合は200を返します
var screenWidth = window.screen.availWidth;
<Label style={{ width: screenWidth == "1680" ? 570 : 200, color: "transparent" }}>a </Label>