This example (which works only on Safari), uses the deprecated function webkitConvertPointFromPageToNode

var point = webkitConvertPointFromPageToNode (
                  fieldContainerH, 
                  new WebKitPoint (e.clientX, e.clientY)
);

This returns the transformed coordinates of the mouse position.

How can I get the same x & y values, starting from the CSS matrix3D (as shown in the console)?

share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.