Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. // Mouse Wheel Event Scrubs <video> tags
  2. // usage: scrolling with a mouse on <video> tags scrubs the video
  3. Array.prototype.slice.call(document.querySelectorAll('video'))
  4. .forEach(function(tag) {
  5. return tag.addEventListener(
  6. 'wheel',
  7. function(event) {
  8. var tuning = 7 // fine tune this value between 3-7 to change sensitivity
  9. return event.target.currentTime =
  10. event.target.currentTime + ((event.deltaX * -1) + event.deltaY) / tuning
  11. },
  12. {
  13. passive: true
  14. }
  15. )
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement