通过手指滑动禁用水平滚动

时间:2012-07-04 20:46:55

标签: javascript css horizontal-scrolling

这可能只是一个mac问题,但我有一个页面,其元素是页面大小的两倍,并动态移动到视图中。 在我的CSS中我有overflow-x:隐藏设置,这样这个元素就不会创建一个丑陋的底部scollbar,问题出现在我的笔记本电脑上(可能在ipads和其他设备上)我只需滑动用两根手指滚动并查看此内容。这打破了整个布局,看起来非常糟糕,我正在寻找一种方法来使用javascript或css完全禁用此水平滚动操作。

谢谢

2 个答案:

答案 0 :(得分:2)

JavaScript:

 window.onscroll = function () {
     window.scrollTo(0,0);
    }

每当用户尝试滚动时,这将使滚动条返回到原始(0,0)位置。如果我在桌面上使用笔记本电脑垫,请告诉我。

答案 1 :(得分:0)

首先,我使用了一个函数来检查滚动停止的时间。然后我用另一个功能移回中心。

(function(){

var special = jQuery.event.special,
    uid1 = 'D' + (+new Date()),
    uid2 = 'D' + (+new Date() + 1);

special.scrollstart = {
    setup: function() {

        var timer,
            handler =  function(evt) {

                var _self = this,
                    _args = arguments;

                if (timer) {
                    clearTimeout(timer);
                } else {
                    evt.type = 'scrollstart';
                    jQuery.event.handle.apply(_self, _args);
                }

                timer = setTimeout( function(){
                    timer = null;
                }, special.scrollstop.latency);

            };

        jQuery(this).bind('scroll', handler).data(uid1, handler);

    },
    teardown: function(){
        jQuery(this).unbind( 'scroll', jQuery(this).data(uid1) );
    }
};

special.scrollstop = {
    latency: 300,
    setup: function() {

        var timer,
                handler = function(evt) {

                var _self = this,
                    _args = arguments;

                if (timer) {
                    clearTimeout(timer);
                }

                timer = setTimeout( function(){

                    timer = null;
                    evt.type = 'scrollstop';
                    jQuery.event.handle.apply(_self, _args);

                }, special.scrollstop.latency);

            };

        jQuery(this).bind('scroll', handler).data(uid2, handler);

    },
    teardown: function() {
        jQuery(this).unbind( 'scroll', jQuery(this).data(uid2) );
    }
};

})();

jQuery(window).bind('scrollstop', function(e){
  // block horizontal scrolling
  window.scrollTo(0,jQuery(window).scrollTop()); 
});