Jump to content
Search Community

How to do collision detection with CSS plugin?

KokoDoko test
Moderator Tag

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

I am trying to figure out how to do collision detection with greensock and the CSS plugin.

My CSS elements all have "position: absolute" and they are moved across the screen setting their x and y positions with TweenLite.

 

Normally you could use the DOM elements' position to calculate if their boundaries intersect, but how can you do this with css transforms?

 

Thanks!

Link to comment
Share on other sites

Use Element.getBoundingClientRect(). It reports back is bounding box with transforms.

https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect

 

If you're using Draggable, it can do this for you. There's a static method where you can pass in 2 elements and an optional threshold.

http://greensock.com/docs/#/HTML5/GSAP/Utils/Draggable/hitTest/

  • Like 2
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...