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.
如何在滚动时更改元素 mm 的不透明度,例如内容?我的意思是,当页面滚动时,我希望我的图层是半透明的,但是当我停止滚动时,希望它恢复到不透明的样式。
这个脚本对我有用。我想在前 150 像素期间显示一条消息,因此不透明度将从 1 运行到 0。
$(document).ready(function(){ $(document).scroll(function(){ var top=$(this).scrollTop(); if(top<150){ var dif=1-top/150; $(".title").css({opacity:dif}); } }) });