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.
我的页面滚动有点问题...我想在向下滚动页面时更改一些 CSS,如果窗口距离顶部位置有 100 像素...这是我的代码。非常感谢您的帮助。
$(document).ready(function(){ $(window).scroll(function(){ if ($(window).scroll(100)){ $('.ufo').css('right','800px'); } }); });
试试这个:
$(document).ready(function(){ $(window).scroll(function(){ if ($(window).scrollTop() > 100){ $('.ufo').css('right','800px'); } }); });