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')

})

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM