Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不太了解 JS,我想将此代码添加到我的网站,但我不希望它无止境。我希望它在 x 轴的某些限制或边界(最小值和最大值)处停止。我怎样才能以最简单的方式做到这一点?
没关系,使用 jquery 很容易做到这一点。假设您的滚动限制为 800(如您所述),然后将以下代码放入您的 js
$(window).scroll(function(){ if($(window).scrollTop() > 800 ){ return false; } })
顶部为 800 像素后,您的窗口将不会滚动。
谢谢