Home >Web Front-end >CSS Tutorial >How Can I Stop Fixed Position Scrolling at a Specific Point Using jQuery?
Stopping Fixed Position Scrolling at a Certain Point
You have an element that scrolls with the page in a fixed position. However, you want the scrolling to stop at a specific point, say 250px from the top of the page.
jQuery Solution
To achieve this, you can use jQuery:
$(window).scroll(function(){ $("#theFixed").css("top", Math.max(0, 250 - $(this).scrollTop())); });
This code:
This ensures that the element stops scrolling at 250px from the top of the page when scrolling up.
The above is the detailed content of How Can I Stop Fixed Position Scrolling at a Specific Point Using jQuery?. For more information, please follow other related articles on the PHP Chinese website!