-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making things draggable blocks touch scrolling #61
Comments
I could add an option |
Hi @PuruVJ We have a maybe similar usecase. We're horisontally dragging containers. Works fine. But we cant scroll up/down Have you any ideas? In a "manual vanilla example" we register mouse position on mousedown, evaluate if mouse move horisontally is more than a treshhold and only then prevents scrolling |
nasty workaround - using an important modifier on default class DragOption - something like; |
First of all: this is a brilliant library- I've been looking for a drag and drop lib like this for a while.
But: I've got a long scrollable list of scrollable images that I want to drag and drop onto a page. When on a desktop: mousewheel, arrows, page up/down works fine. On a touchscreen, however the expected swipe to scroll doesn't happen- probably because of this:
// On mobile, touch can become extremely janky without it node.style.touchAction = 'none';
Is there a way around this? Is there a way to add a delay to the action so that a swipe won't trigger the dragging, but holding for a half second will?
Cheers!
The text was updated successfully, but these errors were encountered: