今、私は移動/回転する車を持っています。しかし、移動と回転を同時に行うと、車は中心を中心に回転しません。
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で割ろうとしましたが、うまくいきませんでした。どんな助けでも大歓迎です。