I have this JS script that basically makes the mouse wheel scrolling a slider, I want to control the scrolling speed and don't really know how to do it
const scrollContainer = document.querySelector(".jet-listing-grid__scroll-slider-desktop");
scrollContainer.addEventListener("wheel", (evt) => {
evt.preventDefault();
scrollContainer.scrollLeft += evt.deltaY;
});