I would like to get one event only per scroll event
I try this code but it produces "wheel" as many times the wheel event is triggered. Any help? Thank you
window.addEventListener("wheel",
(e)=> {
console.log("wheel");
e.preventDefault();
},
{passive:false}
);
Use case (edit) I want to allow scrolling from page to page only - with an animation while scrolling. As soon I detect the onwheel event, I would like to stop it before the animation finishes, otherwise the previous onwheel continues to fire and it is seen as new event, so going to the next of the targeted page
from wheel event PreventDefault does not cancel wheel event
No comments:
Post a Comment