Scrolling Parallax without a scrollbar

I wanted to know if there are any javascript libraries that handle parallax scrolling, with panels, but without using scroll bars? My client doesn’t want any scrollbars, and the website works like the panels that appear when scrolling.

I tried Skrollr, but when I overflow: hidden, it does not work.

thanks

+4
source share
1 answer

I think you always need to write code for the parallax of everything, but once I used this library

jQuery mousewheel https://github.com/brandonaaron/jquery-mousewheel

because I did not want the scrollbar on my site, it was really useful. It allows you to detect scrolling in every div your document , so you don’t have to bind the action to window.scroll . The only problem if you are not using jQuery is what this library requires. Anyway, I think jQuery is always a good idea.

+2
source

Source: https://habr.com/ru/post/1486996/


All Articles