Share Posted November 29, 2015 Hi there, it must be something really simple but I can't find it in the docs: how does one get local coordinates of a specific point in an element after it has been transformed? For example, if user clicks on a div that has been rotated 45 degrees, how do I get the transformed coordinates of the mouse click in the div? Please have a look at this codepen: It works as this: Click on the top left corner of the box. Local coordinate values will appear in it. Rotate the box 90 degrees clockwise. Click the same corner, which should be top right now. The value presented appears to be not transformed. I would expect the the returned value to be similar to the one received in the step 3. Not getting the transformed value makes it difficult to insert elements into containers at a specific location. It is especially the case when one is working with a huge scrollable container with only a fraction of it area visible. See the Pen BoXpKB by anon (@anon) on CodePen Link to comment Share on other sites More sharing options...
Share Posted November 30, 2015 Hi Yuri your code is to calculating x,y base of div position ( pls change Draggable type to 'x,y' ) , for rotated divs you can use trigonometry . edit : Blake is completely right . 1 Link to comment Share on other sites More sharing options...
Share Posted November 30, 2015 You can use event offset or layer. You might need to check browser compatibility for those though. See the Pen bVXrEW?editors=001 by osublake (@osublake) on CodePen 5 Link to comment Share on other sites More sharing options...
Author Share Posted November 30, 2015 You can use event offset or layer. You might need to check browser compatibility for those though. See the Pen bVXrEW?editors=001 by osublake (@osublake) on CodePen Hi Blake, this indeed is a very clean solution. Would there be a way to transpose a set of any document coordinates to local ones, not only those produced by mouse clicks? 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