jquery图像动画旋转

时间:2012-01-16 12:01:45

标签: jquery jquery-animate rotation

我正在尝试使用jQuery旋转来为图像设置动画,只要它点击了包含锚标记。 anchor标记具有类.show_hide。下面的代码是获取正确的元素,但它没有旋转。

http://code.google.com/p/jqueryrotate/wiki/Examples

$(function()
{       
    $('.show_hide').click(function()
    {           
        var $icon = $(".show_hide img");
        $icon.rotate({animateTo:180});

    });
});

我做错了什么?感谢。

1 个答案:

答案 0 :(得分:0)

好的,我发现它与我加入插件的方式有关。

这不起作用

$.getScript('jQueryRotateCompressed.2.1.js');

所以我改变了它

$.getScript('/js/jQueryRotateCompressed.2.1.js');