jquery 的animate 的transform

$(function(){

  var t = 1000;

  $("#id").animate(

    {borderSpacing:180}, //180 指旋转度数

    {

      step: function(now,fix){

        $(this).css('-webkit-transform','rotate('+now+'deg)');

        $(this).css('-ms-transform','rotate('+now+'deg)');

        $(this).css('-moz-transform','rotate('+now+'deg)');

        $(this).css('-o-transform','rotate('+now+'deg)');

        $(this).css('-transform','rotate('+now+'deg)');

      },durantion:t},'linear')

})