我正在尝试在 jquery 中旋转一个按钮!
这是我在 jsfiddle 上创建的
jQuery代码
$("#no").rotate({
angle:0,
bind: {
click : function(){
var curAngle = parseInt($(this).getRotateAngle());
$(this).rotate({
angle: curAngle,
animateTo: curAngle + 30
});
}
}
});