当我查询容器的左侧位置时,即使在滚动时它也会返回静态数字。这是因为没有启用x滚动吗?如果是这样,我应该如何重组我的代码?

jsfiddle:https://jsfiddle.net/0xcbmrjo/

和js:

const body = document.querySelector("body")
const wrapper = document.querySelector(".wrapper")
const bodyHeight = function () {
  body.style.height = wrapper.offsetWidth - (window.innerWidth - window.innerHeight) +'px'
}
bodyHeight ()
window.addEventListener ("resize", bodyHeight)

document.addEventListener("scroll", function(){
  let scroll = window.pageYOffset
  wrapper.style.left = `${-1 * scroll}px`

  const leftViewport = window.pageXOffset
  const midViewport = leftViewport + (window.innerWidth/2)

  const containers = document.querySelectorAll(".container")
  containers.forEach(container => {
    const leftContainer = container.offsetLeft
    const midContainer = leftContainer + (container.offsetWidth/2)
    const distanceToContainer = midViewport - midContainer
  })

})

最佳答案

根据MDN,offsetLeftoffsetParent属性读取,该属性是“对最接近(包含层次结构中最近的)定位祖先元素(https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent)的元素的引用”。在我们的例子中,我们重新放置.wrapper元素,该元素带有所有子元素(.container元素),以使.container元素相对于其直接祖先保持恒定的偏移量,因此是“静态”偏移量。

关于javascript - 计算水平视差的div左边缘与视口(viewport)左边缘之间的距离,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60173121/

10-12 12:55