Retrieve the position (X,Y) of an HTML element relative to the browser window

前端 未结 27 3717
闹比i
闹比i 2020-11-21 04:59

I want to know how to get the X and Y position of HTML elements such as img and div in JavaScript relative to the browser window.

27条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-21 05:49

    While this is very likely to be lost at the bottom of so many answers, the top solutions here were not working for me.
    As far as I could tell neither would any of the other answers have helped.

    Situation:
    In an HTML5 page I had a menu that was a nav element inside a header (not THE header but a header in another element).
    I wanted the navigation to stick to the top once a user scrolled to it, but previous to this the header was absolute positioned (so I could have it overlay something else slightly).
    The solutions above never triggered a change because .offsetTop was not going to change as this was an absolute positioned element. Additionally the .scrollTop property was simply the top of the top most element... that is to say 0 and always would be 0.
    Any tests I performed utilizing these two (and same with getBoundingClientRect results) would not tell me if the top of the navigation bar ever scrolled to the top of the viewable page (again, as reported in console, they simply stayed the same numbers while scrolling occurred).

    Solution
    The solution for me was utilizing

    window.visualViewport.pageTop
    

    The value of the pageTop property reflects the viewable section of the screen, therefore allowing me to track where an element is in reference to the boundaries of the viewable area.

    Probably unnecessary to say, anytime I am dealing with scrolling I expect to use this solution to programatically respond to movement of elements being scrolled.
    Hope it helps someone else.
    IMPORTANT NOTE: This appears to work in Chrome and Opera currently & definitely not in Firefox (6-2018)... until Firefox supports visualViewport I recommend NOT using this method, (and I hope they do soon... it makes a lot more sense than the rest).


    UPDATE:
    Just a note regarding this solution.
    While I still find what I discovered to be very valuable for situations in which "...programmatically respond to movement of elements being scrolled." is applicable. The better solution for the problem that I had was to use CSS to set position: sticky on the element. Using sticky you can have an element stay at the top without using javascript (NOTE: there are times this will not work as effectively as changing the element to fixed but for most uses the sticky approach will likely be superior)

    UPDATE01:
    So I realized that for a different page I had a requirement where I needed to detect the position of an element in a mildly complex scrolling setup (parallax plus elements that scroll past as part of a message). I realized in that scenario that the following provided the value I utilized to determine when to do something:

      let bodyElement = document.getElementsByTagName('body')[0];
      let elementToTrack = bodyElement.querySelector('.trackme');
      trackedObjPos = elementToTrack.getBoundingClientRect().top;
      if(trackedObjPos > 264)
      {
        bodyElement.style.cssText = '';
      }
    

    Hope this answer is more widely useful now.

提交回复
热议问题