jsの配置取得色々

jsの配置取得色々

detail = $(“#content”); // 変数名
detailH = detail.height(); //コンテンツボックスの高さ
footHeight = $(“footer”).innerHeight(); //footerの高さ

■ウィンドウサイズ取得
 windowHeight = $(window).height();
■ウィンドウ上部のスクロール位置
 scrollTop = $(window).scrollTop();
■そのページのコンテンツ全体の高さ
 fullHeight = $(document).height();
■ウィンドウの下部位置
 scrollBottom = $(window).height() + windowHeight;
■コンテンツ全体の中の現在のコンテンツボックスの上部位置
 detailTop = detail.offset().top;
■コンテンツ全体の中の現在のコンテンツボックスの下部位置
 detailBottom = detailTop + detailH;
■ウィンドウ上部からボックスの上部の位置
 detailWin = detailTop – scrollTop;