I have another question. Recently I am trying to build a page with three divs. Each of them has a height of 100vh and a width of 100vw. The thing I want to archive is, that if I am scrolling in div 1 that it automatically scrolls smooth to the top of div 2. And so on. I hope that you understand my question.
div {
width: 100vw;
height: 100vh;
}
div:nth-child(odd) {
background-color: green;
}
div:nth-child(even) {
background-color: red;
}
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
You can use fullpage.js