用于旋转图像的JavaScript

时间:2012-04-16 11:07:20

标签: javascript

我的网页上有旋转图像  链接如下:

http://equosinfotech.com/testdemo/test.html

一切正常,因为我想要,我只是想减慢图像的旋转速度,因为它太快,我无法找到减慢速度的方法。

(你可以看到页面来源的代码)

我只需要任何人来帮助我减慢轮换速度。

我正在使用的javascript:

    var stop = function (){
       $("#image").rotate({

  angle:0, 
  animateTo:0, 
  callback: stop,
  easing: function (x,t,b,c,d){        // t: current time, b: begInnIng value, c:         change In value, d: duration
              return c*(t/d)+b;
          }
       });
    }

    $(document).ready(function()
    {
    rotation();​
        $("#image").rotate({ 
bind: 
{ 
    mouseover : function() { 
    stop();
    },
    mouseout : function() { 
    rotation();
    }
} 
});
    });
var rotation = function() {
$("#image").rotate({

    angle: 0,
    animateTo: 360,
    callback: rotation,
    easing: function(x, t, b, c, d) { // t: current time, b: begInnIng value, c: change In value, d: duration
        return c * (t / d) + b;
    }
});
    }

1 个答案:

答案 0 :(得分:0)

尝试添加您的代码,$("#image").rotate({.. duration:2000,或您想要多少秒(2000秒为2秒)。