现在我有一辆移动/旋转车。但是当我同时移动和旋转时,汽车不会绕中心转动。
setInterval(function() {
box.css({
left: function(index,value) { return newv(value, 37, 39); },
top: function(index,value) { return newv(value, 38, 40); },
transform: function(index,value) { return "rotate(" + newr(37, 39) + "deg)"; }
});
}, 20);
我试图在调用CSS属性之前将图像的宽度和高度除以2而没有运气。任何帮助表示赞赏。