css – 如何对webkit matrix3d转换进行逆向工程

前端之家收集整理的这篇文章主要介绍了css – 如何对webkit matrix3d转换进行逆向工程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个立方体元素在3d空间中旋转和翻译.

我想在给定时间找出此变换的rotateY部分.这可能吗?

我有:

var cube = document.getElementById("cube");
var transform = getComputedStyle(cube).webkitTransform;

//the value of transform is:
// matrix3d(-1,0.00000000000000012246467991473532,//           0,1,//          -0.00000000000000012246467991473532,-1,1)

救命? 原文链接:https://www.f2er.com/css/242386.html

猜你在找的CSS相关文章