tkahn / Smooth-Div-Scroll

A jQuery plugin for smooth scrolling. No longer maintained.
471 stars 184 forks source link

Enable vertical Page-Scrolling #197

Open plain-solutions-gmbh opened 9 years ago

plain-solutions-gmbh commented 9 years ago

I wish it would be possible to Scrolling the Page by touchscrolling vertical.

kirillovdm commented 8 years ago

me too

AlexeyKosov commented 7 years ago

Any workaround for that?

quaywin commented 7 years ago

I found solution on this https://github.com/tkahn/Smooth-Div-Scroll/issues/78 By the way, you should edit kinetic plugin file by commenting e.preventDefault(); line.

touchMove: function (e){
        var touch;
        if (self.mouseDown){
          touch = e.originalEvent.touches[0];
          self._inputmove(touch.clientX, touch.clientY);
          if (e.preventDefault){
            // e.preventDefault();
          }
        }
      }
kirillovdm commented 7 years ago

Oh, thanx, I did it already a long time ago)

On Wed, Mar 22, 2017 at 6:13 AM Thang Nguyen notifications@github.com wrote:

I found solution on this #78 https://github.com/tkahn/Smooth-Div-Scroll/issues/78 By the way, you should edit kinetic plugin file by commenting e.preventDefault(); touchMove: function (e){ var touch; if (self.mouseDown){ touch = e.originalEvent.touches[0]; self._inputmove(touch.clientX, touch.clientY); if (e.preventDefault){ // e.preventDefault(); } } }

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/tkahn/Smooth-Div-Scroll/issues/197#issuecomment-288293934, or mute the thread https://github.com/notifications/unsubscribe-auth/AMA3fkyM0oAJPtE7lYdM82V0aZkm7IpIks5roKADgaJpZM4FgWlt .