I am trying to select the sub attributes of the CSS transform
property with jQuery. So for instance if we have something like this:
Edited
.test{
transform-style: preserve-3d;
width: 460px; height: 738px;
transform: translate3d(0px, 0px, 480.89px)
matrix3d(-0.959423, 0.0701992, -0.273093, 0, 0, -0.968514, -0.248959, 0, 0.281971, 0.238857, -0.929215, 0, 0, 0, 0, 1)
translate3d(230px, 369px, 0px);
Please note that this is a dynamic value, it changes when the view changes So if I want to choose any attribute value from matrix3d, how do I reach it with jQuery? Thanks.