jQuery Mousewheel Scroll Horizontally

前端 未结 4 2129
醉梦人生
醉梦人生 2020-12-14 21:38

I\'m currently developing a horizontally website that can enable my mouse scroll to scroll to the left and right...

My jQuery included sequence:

<         


        
4条回答
  •  死守一世寂寞
    2020-12-14 22:14

    To scroll website horizontally please follow below code:

    
    
    

    Attached mouse wheel event to body:

    $(function() {
    
       $("body").mousewheel(function(event, delta) {
    
          this.scrollLeft -= (delta * 30);
    
          event.preventDefault();
    
       });
    
    });
    

    See demo:

    http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/

提交回复
热议问题