我正在尝试使用放置在元素左上角的句柄 (handle=>div)旋转元素(任何元素 div,p..),现在我的问题是元素没有完全旋转到 360 度,有人可以帮忙吗:
$("#elementid").live('mouseover', function () {
    $(this).draggable({ handle: "#handleid", drag: function (event, ui) {
        var rotateCSS = 'rotate(' + ui.position.left + 'deg)';
        alert(ui.position.left);
        $(this).parent().parent().css({
            '-moz-transform': rotateCSS,
            '-webkit-transform': rotateCSS
        });
    }
    });
});
    