无法让jqueryrotate工作

时间:2012-12-14 22:11:29

标签: javascript jquery

我没有运气在这个page 上使用jqueryrotate示例#2来处理一个简单的html页面。我究竟做错了什么?谢谢你的帮助。

这是我的代码 -

    <!DOCTYPE html>

<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotate.js"></script>
<STYLE type="text/css">
 #img { margin:100px 100px;}
</STYLE>
</head>
<body>

<script type="text/javascript">
$("#img").rotate({ 
   bind: 
     { 
        mouseover : function() { 
            $(this).rotate({animateTo:180})
        },
        mouseout : function() { 
            $(this).rotate({animateTo:0})
        }
     } 

});
</script>


<img id="img" src="https://www.google.com/images/srpr/logo3w.png">
</body>
</html>

1 个答案:

答案 0 :(得分:1)

您的代码工作正常,请参阅here

您应该使用ready

$(document).ready(function() {
    $("#img").rotate({
        bind: {
            mouseover: function() {
                $(this).rotate({
                    animateTo: 180
                })
            },
            mouseout: function() {
                $(this).rotate({
                    animateTo: 0
                })
            }
        }

    });
});​

另外,我不建议使用id #img这不是错误的,它只是丑陋的IMO。