I wanted to know if there are some javascript libraries that handles parallax scrolling, with panes, but without using scrollbars ? My client doesn't want any scrollbars and the website works like panels that show when you scroll.
I tried Skrollr, but when I overflow : hidden, it doesn't work.
thanks
I think you always have to write some code to "parallax" the whole thing , but, I once used this library
jQuery mousewheel https://github.com/brandonaaron/jquery-mousewheel
because I did not want scrollbar
's in my website , it was really helpful. It allows you to detect scrolling
in every div
of your document
, so you're not obliged to bind action to window.scroll
.
The only issue if you're not using jQuery is that this library requires it.
Anyway I think that jQuery is always a good idea.