我的网页中有旋转图像。
链接如下:
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;
}
});
}