使用CSS3 -webkit-transform:translate3d(x,y,z);是否可以使用JavaScript跟踪(x,y,z)运动?
例:
一个对象从(0,0,0)开始,我们在4秒钟的时间内将其转换为(4,4,0).
从理论上讲,该元素应在第一秒放置在(1,1,0),而在第二秒该元素应该放置在(2,2,0),依此类推.Java有没有办法跟踪宾语?
检索translate3d(x,y,z)的css属性将仅返回最终的平移坐标.可以预期的是它的设置.
解决方法:
如果要通过CSS过渡移动元素,则不能,没有办法固定该元素.有仅用于transitionstart和transitionend的事件监听器.
如果您是通过javascript制作动画,则可以,您可以通过以下方式跟踪x,y,z:
node = document.getElementById("yourid");
//your animation loop
console.log(window.getComputedStyle(node).webkitTransform); //this will return a string
var curTransform = new WebKitCSSMatrix(window.getComputedStyle(node).webkitTransform);
console.log(curTransfrom); //this will return an object
//end animation loop