首先,我知道这已被多次介绍,但我就是不知道如何正确插入脚本......
我想要一个 div 在滚动下降时改变不透明度......
我现在拥有的是:FIDDLE
$(window).scroll(function() {
var st = $(this).scrollTop();
$('#liners').each(function(index) {
if (($(this).offset().top-st) < 50) {
$(this).css({
'opacity': (0 + (st / $(this).offset().top))
});
} else {
$(this).css({'opacity': 0.1});
}
})
});
它根本不起作用,甚至不靠近..我需要帮助我不知道我是否也写对了!
感谢您的回答,如果您需要我的更多信息,请询问!