138
141

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

スマホの画面サイズ取得

Posted at
// 画面幅
screen.width
// 画面高
screen.height
// 有効画面幅
screen.availWidth
// 有効画面高
screen.availHeight
// 表示領域幅
window.innerWidth
// 表示領域高
window.innerHeight
// ウィンドウ幅
window.outerWidth
// ウィンドウ高
window.outerHeight
// 表示領域幅
$(window).width()
// 表示領域高
$(window).height()
// 表示領域幅
document.documentElement.clientWidth
// 表示領域高
document.documentElement.clientHeight
// ドキュメント幅
$(document).width()
// ドキュメント高
$(document).height()
138
141
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
138
141

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?