Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
178 views
in Technique[技术] by (71.8m points)

html - How to fire javascript function after scroll to specific div bottom?

 window.addEventListener("scroll", ()=>{
        alert('you passed red box bottom')
      })
.first-box{height:200px; 
width:300px;
border:1px solid red}

.second-box{
height:200px; 
width:300px;
border:1px solid blue
margin-top:140px;
}
<div class="first-box"></div>
<div class="second-box"></div>
question from:https://stackoverflow.com/questions/65876046/how-to-fire-javascript-function-after-scroll-to-specific-div-bottom

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

To reach the bottom of the container you want, you need to use parameter scrollHeight of that container. Further, using the condition if you compare the current position of window.scrollY until this position is equal to element.scrollHeight.

var firstbox = document.querySelector(".first-box");

window.addEventListener("scroll", () => {
  if (this.scrollY >= firstbox.scrollHeight) {
    console.log('you passed red box bottom');
  }
});
body {
  height: 5000px;
}

.first-box {
  height:200px; 
  width:300px;
  border:1px solid red;
}

.second-box {
  height:200px; 
  width:300px;
  border:1px solid blue
  margin-top:140px;
}
<div class="first-box"></div>
<div class="second-box"></div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...