7
7

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.

javascriptで画面サイズを図る

Posted at

$(document).height() - $(window).height()

これでブラウザの画面下部からの距離になる。

$(document).height() →ページ全体の高さ
$(window).height()→ブラウザの表示領域

ページ全体>ブラウザの表示領域が通常。

ブラウザの画面下部は

ページ全体の高さーブラウザの表示領域

で算出される。

ただし、ブラウザの表示領域は下に行くほど大きくなり、最終的にページ全体の高さとおなじになる。

$(window).height()で引数なしに設定しているのは、ブラウザの表示領域を最終的にページ全体の高さとして取り扱うことができるためである。

7
7
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
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?