我想旋轉90度,180度和按鈕360度的圖像旋轉圖像點擊要在點擊一個按鈕
<img class="test" id="image" src="images/image" alt="This is the Display Image" />
我已經使用這個劇本,我不喜歡它,因爲它只是顯示一個單個旋轉..
$(document).ready(function() {
$('#image').rotate({maxAngle:25,minAngle:-55,
bind: [
{"mouseover":function(){$(this).rotateAnimation(85); } },
{"mouseout":function(){$(this).rotateAnimation(-35); } }
]
});
});
非常感謝你..它的工作精細 – Bharu
你的代碼是完美的,但不是在IE9中工作:( –
呃......我是一個mac開發人員,並傾向於圍繞IE瀏覽器工作很多......嘗試查看哪些函數,即與('hasClass'或'attr')有關的問題,看看是否有工作週轉(可以使用'attr(classname)'而不是'hasClass(classname)'如果這個問題或他們可能是你可以使用'.class()'而不是'attr'('class',value)') –