locomotivemtl / locomotive-scroll

🛤 Detection of elements in viewport & smooth scrolling with parallax.
https://locomotivemtl.github.io/locomotive-scroll
MIT License
7.84k stars 1.12k forks source link

Scrollbar thumb height is not proper #429

Closed abrupareliya02 closed 2 years ago

abrupareliya02 commented 2 years ago

Hello 👋

Here is the script which I am using for locomotive-scroll: let scrollContainer = document.querySelector("[data-scroll-container]"); var scroll; scroll = new LocomotiveScroll({ el: scrollContainer, smooth: true, });

c-scrollbar-thumb height is 8048px. My main viewport height of data-scroll-container is 15804px.

HTML structure is like:

Thank you 👊 Screen Shot 2022-05-18 at 1 29 44 PM

get-web commented 2 years ago

Try removing position: relative; from body

abrupareliya02 commented 2 years ago

Working fine now. Thanks @get-web