2013-10-29 135 views
0

我有一個div啓用了水平滾動(overflow-x:scroll; overflow-y:hidden;)。 事情是,我想保持水平滾動,但我不想顯示滾動條。在iOS中它工​​作的很好,但Android設備顯示欄: - \隱藏移動設備中的水平滾動條

謝謝!

回答

0
$("#scroller").bind('touchstart', function (ev) { 
    if ($(this).scrollTop() === 0) $(this).scrollTop(1); 
    var scrollTop = document.getElementById('scroller').scrollTop; 
    var scrollHeight = document.getElementById('scroller').scrollHeight; 
    var offsetHeight = document.getElementById('scroller').offsetHeight; 
    var contentHeight = scrollHeight - offsetHeight; 
    if (contentHeight == scrollTop) $(this).scrollTop(scrollTop-1); 

});