1

我正在尝试在 jquery 中旋转一个按钮!

这是我在 jsfiddle 上创建的

http://jsfiddle.net/QVKjt/1/

jQuery代码

$("#no").rotate({ 
    angle:0,
        bind: {
            click : function(){
                var curAngle = parseInt($(this).getRotateAngle());
                $(this).rotate({
                    angle: curAngle,
                    animateTo: curAngle + 30
                });
            }
        }
   });
4

3 回答 3

2

尝试这个

var rotation = 0;

jQuery.fn.rotate = function(degrees) {
    $(this).css({'-webkit-transform' : 'rotate('+ degrees +'deg)',
                 '-moz-transform' : 'rotate('+ degrees +'deg)',
                 '-ms-transform' : 'rotate('+ degrees +'deg)',
                 'transform' : 'rotate('+ degrees +'deg)'});
};

$('#no').click(function() {
    rotation += 30;
    $(this).rotate(rotation);
});

检查小提琴演示

于 2013-07-08T11:19:20.680 回答
2

.rotate()不是官方的 jQuery 函数,您需要手动加载它。

为此,请单击此处下载库并使用以下方法引用您的应用程序:

<script type="text/javascript" src="js/jQueryRotate.2.2.js"></script>

在 jsFiddle 我只是添加了一个外部库。要查看工作,请单击此处

于 2013-07-08T11:17:18.623 回答
1

也许这对你有帮助。

$("#no").rotate({ 
angle:0,
    bind: {
        click : function(){
            $(this).rotate({
                angle: 0,
                animateTo:  30
            });
        }
    }
});

检查演示:http: //jsfiddle.net/QVKjt/8/

于 2013-07-08T11:19:37.457 回答