Is it possible to implement dragging after release using HammerJS (and if so, how)? I am using it in conjunction with AngularJS, but that detail should not be relevant.
I'm inquiring about this because I aim to achieve a seamless scrolling experience (similar to the one seen on native iOS where scrolling continues after lifting your finger).
I believe there is a way to accomplish this as there is a velocity property available in the gesture event.
In my implementation, there is an overlay div positioned above the content that detects touches. From there, I manually manage the scrolling of the underlying divs based on these touch events.