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;
-
前の記事
ホスト名によってwp-config.phpの値を変更する 2017.12.01
-
次の記事
一覧ページに設置するもっと見るボタン 2017.12.21