Share Posted October 27, 2016 I'm wondering if there is a way to know if the draggable element hits the bounds i have defined for it? I would like to shoot off a function or some code when it hits the edge of the bounds area. Link to comment Share on other sites More sharing options...
Share Posted October 27, 2016 Hello TopGun121 Have you looked into the hitTest() method: http://greensock.com/docs/#/HTML5/GSAP/Utils/Draggable/hitTest/ http://greensock.com/docs/#/HTML5/GSAP/Utils/Draggable/hitTest/ Also look at this Topic on hitTest() method: http://greensock.com/forums/topic/15019-collision-detection/ //checks if at least 30% of the element is overlapping with the other element: if (this.hitTest("#element", "30%")) { // code stuff here } 1 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