我正在更新一些css窗口滚动。当滚动事件正在运行时,这在桌面上运行良好。
然而,在移动设备上,滚动事件会在触摸后触发,导致屏幕跳跃。
是否存在可以覆盖两者的触摸事件?
$(window).scroll(function() {
scrollBanner();
});
function scrollBanner() {
//Get the scoll position of the page
scrollPos = $(this).scrollTop();
//Scroll and fade out the banner text
$('#bannerText').css({
'margin-bottom' : -(scrollPos/3)+"px",
'opacity' : 1-(scrollPos/300)
});
}