Last active
December 9, 2015 06:21
-
-
Save WebReflection/ea3e833b4de07d877479 to your computer and use it in GitHub Desktop.
A simple solution to a common scrolling problem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (global) {'use strict'; | |
// (C) Andrea Giammarchi @WebReflection | |
// https://gist.github.com/WebReflection/ea3e833b4de07d877479 | |
var | |
tick = false, | |
rAF = global.requestAnimationFrame || | |
global.webkitRequestAnimationFrame || | |
global.mozRequestAnimationFrame || | |
global.msRequestAnimationFrame || | |
global.oRequestAnimationFrame || | |
function (cb) { | |
setTimeout(cb, 1000 / 60); | |
}, | |
CE = global.CustomEvent || | |
function (type) { | |
var e = document.createEvent('Event'); | |
e.initEvent(type, true, true); | |
return e; | |
} | |
; | |
function lessGreedyScroll() { | |
if (!tick) { | |
tick = !tick; | |
requestAnimationFrame(scroll); | |
} | |
} | |
function scroll() { | |
window.dispatchEvent(new CE('scroll:smoother')); | |
tick = !tick; | |
} | |
global.addEventListener('mousewheel', lessGreedyScroll, true); | |
global.addEventListener('scroll', lessGreedyScroll, true); | |
}(window)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mousewheel hack
Please note that simply adding
addEventListener('mousewheel',Object);
as no-op on top of your page will somehow fix the problem at least in Chromium for Linux.