使用jQuery CSS属性在中心周围旋转图像

时间:2013-09-29 16:53:08

标签: jquery css image

现在我有一辆移动/旋转车。但是当我同时移动和旋转时,汽车不会绕中心转动。

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而没有运气。任何帮助表示赞赏。

Full fiddle here

0 个答案:

没有答案