我在我的網頁上有旋轉圖像。
鏈接如下: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;
}
});
}
總是在問題本身**中包含相關的代碼和標記**,不要只是鏈接。爲什麼:http://meta.stackexchange.com/questions/118392/add-stack-overfow-faq-entry-or-similar-for-putting-code-in-the-question – 2012-04-16 11:09:13