我想在我的網站上放置旋轉標誌。我的意思是它應該不斷旋轉。我試圖用jQuery來做這件事。 請看看,並建議我哪裏出錯了。爲什麼這段代碼不工作。請幫我連續旋轉圖像
var rotation = function(){
$("#img").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;
}
});
}
rotation();
我已經使用這個代碼在我的HTML這樣的
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script type="text/javascript" src="jquery.easing.1.3.js"></script>
<script type="text/javascript">
var rotation = function(){
$("#img").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;
}
});
}
rotation();
</script>
<title>Untitled Document</title>
</head>
<body>
<img src="LMIH_LOGO.png" width="174" height="322" name="img" id="img" />
</body>
</html>
它不工作。請有人幫我在這裏
我推薦一個動畫GIF爲此。 –
你不包括旋轉插件 – Usman
Usman,我已經包括jquery.rotate.1-1.js,仍然不工作:( – priya