npm install ponywheel``shell`
npm install ponywheel
Documentation











`js
const ponyWheel = new PonyWheel(
{
rootNode: document.body,
eventTarget: window
});
ponyWheel.init()
window.addEventListener('ponywheel',(e)=> {
console.log(e.detail) // => mousewheel.e
})
// ponyWheel.destroy()
``