Currently, I have a setup where the user needs to interact with the layer behind the transparent scroll capture:
http://jsbin.com/huxasup/4/edit?html,css,js,console,output
scrollerCapture = document.querySelector('.scroller-capture');
scrollerCapture.addEventListener('scroll', e => {
e.preventDefault();
console.log(scrollerCapture.scrollTop);
});
Is there a conventional method to achieve this functionality? Are tools like iScroll or ScrollMagic recommended for implementing this on mobile devices?
Appreciate any insights.