I want to be able to make a web page that plays a video forward and backward when they scroll with the mouse wheel up and down. It seems conceivable, via HTML5 and possibly
Possibly something like this
$(document).mousewheel(function(event, delta, deltaX, deltaY){ if (deltaY > 0) { $(".video-element").get(0).playbackRate = -1; } else { $(".video-element").get(0).playbackRate = 1; } event.preventDefault(); });