Utilizzo di jquery per ottenere la posizione dell'elemento rispetto al viewport


117

Qual è il modo corretto per ottenere la posizione di un elemento sulla pagina rispetto alla visualizzazione (piuttosto che al documento). jQuery.offsetla funzione sembrava promettente:

Ottieni le coordinate correnti del primo elemento o imposta le coordinate di ogni elemento, nell'insieme di elementi corrispondenti, rispetto al documento.

Ma è relativo al documento. Esiste un metodo equivalente che restituisce gli offset relativi al viewport?


5
NOTA: vedi la risposta di @Igor G ...
Carl Smith

3
Per DA, dovresti davvero impostare la risposta di Igor G come accettata, è un salvavita!
Vincent Duprez

Risposte:



287

Il modo più semplice per determinare la dimensione e la posizione di un elemento è chiamare il suo metodo getBoundingClientRect () . Questo metodo restituisce le posizioni degli elementi nelle coordinate della finestra. Non prevede argomenti e restituisce un oggetto con proprietà left, right, top e bottom . Le proprietà left e top danno le coordinate X e Y dell'angolo superiore sinistro dell'elemento e le proprietà right e bottom danno le coordinate dell'angolo inferiore destro.

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

Supportato ovunque.


15
È incredibile che questo metodo sia stato aggiunto da IE5 ... quando qualcosa è buono, è buono!
roy riojas


2
Non supportato dall'ultimo FirefoxgetBoundingClientRect is not a function
user007

2
@ user007 Confermo che è supportato da lastest firefox.
adriendenat

26
Ottima risposta, e per renderlo jquery fallo semplicemente in questo modo: $('#myElement')[0].getBoundingClientRect().top(o qualsiasi altra posizione)
Guillaume Arluison

40

Ecco due funzioni per ottenere l'altezza della pagina e le quantità di scorrimento (x, y) senza l'uso del plug-in delle dimensioni (gonfio):

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

È brillante. Molto utile.
Jimmy

Per curiosità, perché in questo caso hai utilizzato la proprietà "self" invece di window?
dkugappi


23

jQuery.offsetdeve essere combinato con scrollTope scrollLeftcome mostrato in questo diagramma:

scorrimento della finestra e offset dell'elemento

demo:

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
questo ha funzionato alla grande per me, ma lo stavo usando per determinare se un suggerimento stava uscendo dai limiti, quindi ho modificato per includere i valori in basso e a destra: jsfiddle.net/EY6Rk/21
Jordan

Questa è la risposta assolutamente, in ogni caso, corretta. Tutti gli altri hanno problemi a seconda della configurazione delta mouse / scorrimento, browser, posizione degli oggetti, ecc.
Pedro Ferreira

2

Ecco una funzione che calcola la posizione corrente di un elemento all'interno del viewport:

/**
 * 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))
    ];
}

I valori di ritorno sono calcolati in questo modo:

Uso:

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

demo:

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

Ho scoperto che la risposta di cballou non funzionava più in Firefox a partire da gennaio 2014. In particolare, if (self.pageYOffset)non si è attivato se il client aveva fatto scorrere a destra, ma non verso il basso, perché 0è un numero falso. Questo non è stato rilevato per un po 'perché Firefox supportava document.body.scrollLeft/ Top, ma per me non funziona più (su Firefox 26.0).

Ecco la mia soluzione modificata:

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];
};

Testato e funzionante in FF26, Chrome 31, IE11. Quasi certamente funziona su versioni precedenti di tutti loro.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.