jqueryを使用してビューポートに対する要素の位置を取得する


117

(ドキュメントではなく)ビューポートを基準にしたページ上の要素の位置を取得する適切な方法は何ですか。jQuery.offset機能は有望であるように見えました:

ドキュメントに対して、最初の要素の現在の座標を取得するか、一致する要素のセット内のすべての要素の座標を設定します。

しかし、それはドキュメントに関連しています。ビューポートに関連するオフセットを返す同等のメソッドはありますか?


5
注:@Igor Gの回答を参照してください...
カールスミス

3
DAにとって、本当にIgor Gの答えを受け入れられるように設定する必要があります。これは命の恩人です!
Vincent Duprez、2015

回答:


26

Dimensionsプラグイン、特にscrollTop()/を調べますscrollLeft()。情報はhttp://api.jquery.com/scrollTopにあります。


8
別のプラグインを使いたくありませんでしたが、$(window).scrollTop()がまさに必要なものです!ありがとう!
DA。

16
ディメンションプラグインは、jQueryコアの一部になりました。ViewPortプラグインも役立ちます:appelsiini.net/projects/viewport
StriplingWarrior

287

要素のサイズと位置を決定する最も簡単な方法は、そのgetBoundingClientRect()メソッドを呼び出す ことです。このメソッドは、ビューポート座標での要素の位置を返します。引数はなく、プロパティleft、right、topbottomを持つオブジェクトを返します。leftおよびtopプロパティは、要素の左上隅のXおよびY座標を提供し、rightおよびbottomプロパティは、右下隅の座標を提供します。

element.getBoundingClientRect(); // Get position in viewport coordinates

どこでもサポートされています。


15
この方法がIE5によって追加されたのは信じられないことです。
roy riojas 2013年

これは、最初は素晴らしい見えたが、それはモバイルSafariの7にズームのユーザーを考慮していない
MyNameIsKo

2
最新のFirefoxではサポートされていませんgetBoundingClientRect is not a function
user007 2014

2
@ user007最新のFirefoxでサポートされていることを確認しました。
adriendenat 14

26
すばらしい答えであり、jqueryでこのようにするだけです:($('#myElement')[0].getBoundingClientRect().topまたはその他の位置)
Guillaume Arluison

40

(肥大化した)ディメンションプラグインを使用せずにページの高さとスクロール量(x、y)を取得する2つの関数を次に示します。

// getPageScroll() by quirksmode.com
function getPageScroll() {
    var xScroll, yScroll;
    if (self.pageYOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    } else if (document.documentElement && document.documentElement.scrollTop) {
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    } else if (document.body) {// all other Explorers
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }
    return new Array(xScroll,yScroll)
}

// Adapted from getPageSize() by quirksmode.com
function getPageHeight() {
    var windowHeight
    if (self.innerHeight) { // all except Explorer
      windowHeight = self.innerHeight;
    } else if (document.documentElement && document.documentElement.clientHeight) {
      windowHeight = document.documentElement.clientHeight;
    } else if (document.body) { // other Explorers
      windowHeight = document.body.clientHeight;
    }
    return windowHeight
}

これは素晴らしいです。非常に便利。
ジミー

好奇心から、この場合にウィンドウではなく「self」プロパティを使用したのはなぜですか?
dkugappi


23

jQuery.offsetこの図に示すように、scrollTopと組み合わせる必要がありますscrollLeft

ビューポートのスクロールと要素のオフセット

デモ:

function getViewportOffset($e) {
  var $window = $(window),
    scrollLeft = $window.scrollLeft(),
    scrollTop = $window.scrollTop(),
    offset = $e.offset(),
    rect1 = { x1: scrollLeft, y1: scrollTop, x2: scrollLeft + $window.width(), y2: scrollTop + $window.height() },
    rect2 = { x1: offset.left, y1: offset.top, x2: offset.left + $e.width(), y2: offset.top + $e.height() };
  return {
    left: offset.left - scrollLeft,
    top: offset.top - scrollTop,
    insideViewport: rect1.x1 < rect2.x2 && rect1.x2 > rect2.x1 && rect1.y1 < rect2.y2 && rect1.y2 > rect2.y1
  };
}
$(window).on("load scroll resize", function() {
  var viewportOffset = getViewportOffset($("#element"));
  $("#log").text("left: " + viewportOffset.left + ", top: " + viewportOffset.top + ", insideViewport: " + viewportOffset.insideViewport);
});
body { margin: 0; padding: 0; width: 1600px; height: 2048px; background-color: #CCCCCC; }
#element { width: 384px; height: 384px; margin-top: 1088px; margin-left: 768px; background-color: #99CCFF; }
#log { position: fixed; left: 0; top: 0; font: medium monospace; background-color: #EEE8AA; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<!-- scroll right and bottom to locate the blue square -->
<div id="element"></div>
<div id="log"></div>


2
これは私にとってはうまくいきましたが、ツールチップが範囲外になっているかどうかを判断するためにこれを使用していたため、下と右の値を含めるように変更しました:jsfiddle.net/EY6Rk/21
Jordan

これは絶対に、とにかく正しい答えです。他のすべては、マウス等/スクロールデルタ構成、ブラウザ、OBJ場所に応じて問題持っている
ペドロ・フェレイラ

2

次に、ビューポート内の要素の現在の位置を計算する関数を示します。

/**
 * Calculates the position of a given element within the viewport
 *
 * @param {string} obj jQuery object of the dom element to be monitored
 * @return {array} An array containing both X and Y positions as a number
 * ranging from 0 (under/right of viewport) to 1 (above/left of viewport)
 */
function visibility(obj) {
    var winw = jQuery(window).width(), winh = jQuery(window).height(),
        elw = obj.width(), elh = obj.height(),
        o = obj[0].getBoundingClientRect(),
        x1 = o.left - winw, x2 = o.left + elw,
        y1 = o.top - winh, y2 = o.top + elh;

    return [
        Math.max(0, Math.min((0 - x1) / (x2 - x1), 1)),
        Math.max(0, Math.min((0 - y1) / (y2 - y1), 1))
    ];
}

戻り値は次のように計算されます。

使用法:

visibility($('#example'));  // returns [0.3742887830933581, 0.6103752759381899]

デモ:

function visibility(obj) {var winw = jQuery(window).width(),winh = jQuery(window).height(),elw = obj.width(),
    elh = obj.height(), o = obj[0].getBoundingClientRect(),x1 = o.left - winw, x2 = o.left + elw, y1 = o.top - winh, y2 = o.top + elh; return [Math.max(0, Math.min((0 - x1) / (x2 - x1), 1)),Math.max(0, Math.min((0 - y1) / (y2 - y1), 1))];
}
setInterval(function() {
  res = visibility($('#block'));
  $('#x').text(Math.round(res[0] * 100) + '%');
  $('#y').text(Math.round(res[1] * 100) + '%');
}, 100);
#block { width: 100px; height: 100px; border: 1px solid red; background: yellow; top: 50%; left: 50%; position: relative;
} #container { background: #EFF0F1; height: 950px; width: 1800px; margin-top: -40%; margin-left: -40%; overflow: scroll; position: relative;
} #res { position: fixed; top: 0; z-index: 2; font-family: Verdana; background: #c0c0c0; line-height: .1em; padding: 0 .5em; font-size: 12px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="res">
  <p>X: <span id="x"></span></p>
  <p>Y: <span id="y"></span></p>
</div>
<div id="container"><div id="block"></div></div>


0

2014年1月の時点で、cballouによる回答がFirefoxで機能していないことがわかりました。具体的にif (self.pageYOffset)は、クライアントが右にスクロールしている場合はトリガーされませんでした0。Firefoxがdocument.body.scrollLeft/をサポートしていたため、しばらくの間検出されTopませんでしたが、これは(Firefox 26.0では)機能しなくなりました。

これが私の変更した解決策です:

var getPageScroll = function(document_el, window_el) {
  var xScroll = 0, yScroll = 0;
  if (window_el.pageYOffset !== undefined) {
    yScroll = window_el.pageYOffset;
    xScroll = window_el.pageXOffset;
  } else if (document_el.documentElement !== undefined && document_el.documentElement.scrollTop) {
    yScroll = document_el.documentElement.scrollTop;
    xScroll = document_el.documentElement.scrollLeft;
  } else if (document_el.body !== undefined) {// all other Explorers
    yScroll = document_el.body.scrollTop;
    xScroll = document_el.body.scrollLeft;
  }
  return [xScroll,yScroll];
};

テスト済み、FF26、Chrome 31、IE11で動作。ほぼ間違いなく、それらすべての古いバージョンで動作します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.