0
我想要一些幫助淡出滾動屏幕上的頂部和底部部分。在閱讀Fade only top part of div out as it reaches fixed navigation和Yoann的回答後,我得到了最重要的部分褪色工作,但我無法弄清楚如何與底部一樣做。在屏幕上淡出div的頂部和底部部分
$(window).on('scroll', function() {
$('.section').each(function (index, item) {
$(item).children().each(function (indexChild, child) {
var st = $(window).scrollTop();
st = $(window).scrollTop() - $(child).offset().top + 10;
$(child).css({ 'opacity': (1 - st/20) });
});
});
});
我完全不知道,所以你試圖淡化「.section」的孩子到1 - st/20的某個因子? – TGammage