我想在单击按钮时将图像旋转 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); } }
]
});
});