-1

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

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;
    }
});
    }
4

1 回答 1

0

尝试在您的代码中添加,或添加您想要$("#image").rotate({..duration:2000,秒数(2000 是 2 秒。以毫秒为单位)。

于 2012-04-16T11:14:26.477 回答