Javascript Mousewheel Event & Video Volume - Prevent Page Scroll
I'm trying to control a video volume using the MouseWheel, I want to completely disable the page scroll when my mouse is over the video, it works but there's a problem when the vid
Solution 1:
You will want to add a condition to your if statement to turn it up or down like so:
if(delta== 1 && popo.volume <= 0.9){popo.volume+=0.1;}
if(delta== -1 && popo.volume > 0.1){popo.volume-=0.1;}
Post a Comment for "Javascript Mousewheel Event & Video Volume - Prevent Page Scroll"