这是我的剧本:
jQuery(document).ready(function(){
jQuery(window).scroll(function () {
var scrollTop = jQuery(window).scrollTop();
var height = jQuery(window).height();
jQuery('.background_top_dissolvenza').css({
'opacity': ((height - scrollTop) / height)
});
});
});
我想将不透明度值停在0.5,而现在它达到0甚至更远,我滚动时显示负值。
有什么建议吗?谢谢!