Share Posted June 19, 2019 hi, i have some card i move with draggable plugin and i choose to use ThrowProps on release. use this code: Draggable.create(".drag_item", { bounds: $('.drag_zone'), edgeResistance: 0.9, type: "x,y", throwProps: true }); Can I change the friction of the plugin? currently when I release the card, it stops after too long a route Link to comment Share on other sites More sharing options...
Share Posted June 19, 2019 Sure, have you tried playing with the "throwResistance" property? That should give you what you need Link to comment Share on other sites More sharing options...
Author Share Posted June 19, 2019 like this? throwProps: {resistance: 150}, in the help guideline i read: throwProps: {x: 500, y: -300, resistance: 150} but i haven't x and y position .... they depend on the direction of dragging Link to comment Share on other sites More sharing options...
Share Posted June 19, 2019 No, that's for using the plugin by itself. Check out the throwProps properties in the draggable docs. https://greensock.com/docs/Utilities/Draggable Draggable.create(".drag_item", { bounds: $('.drag_zone'), edgeResistance: 0.9, throwProps: true, throwResistance: 2000 // <-- HERE }); 3 Link to comment Share on other sites More sharing options...
Author Share Posted June 19, 2019 oh thank you ... sorry but I'm newbie Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now