Horizontal scrolling with JS
17 January 2022
JS
Web
Code snippets
HTML
<div class="section">
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
<div><h1>Scroll</h1></div>
<div><h1>-</h1></div>
<div><h1>with</h1></div>
<div><h1>-</h1></div>
<div><h1>mouse!</h1></div>
<div><h1>-</h1></div>
</div>
CSS
h1{
color: gray;
}
.section {
overflow-x: scroll;
display: flex;
}
.section div {
height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
.section > div:nth-child(even) {
background-color: #ccc;
}
JS
let myScroll = document.querySelector(".section");
myScroll.addEventListener("wheel", (e) => {
e.preventDefault();
myScroll.scrollLeft += e.deltaY;
});