$(窗口).scroll触摸移动后触发

时间:2015-02-18 18:48:29

标签: javascript jquery jquery-mobile

我正在更新一些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)
  });

}

0 个答案:

没有答案