gpt4 book ai didi

javascript - 尝试使用 jquery 使图像旋转

转载 作者:太空宇宙 更新时间:2023-11-04 14:02:44 25 4
gpt4 key购买 nike

我正在努力使图像旋转,我的控制台告诉我我的 javascripts 没有错误,但是当我将鼠标悬停时图像没有旋转。以下是文件内容:

myjavascripts.js

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

});

在我的index.erb

<head>
<script type="text/javascript" src="/javascripts/jquery.js"></script>
<script type="text/javascript" src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotate.js"></script>
<script type="text/javascript" src="/javascripts/myjavascript.js"></script>
...
<img border="0" src="/images/transparent_drapes.jpg" alt="drapes" width="" height="" id="image">
</div>

最佳答案

您需要将您的代码包装在文档中,因为您的图像必须在事件注册之前加载到页面上。 $(function(){}) 像这样:

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

});
});

DEMO

关于javascript - 尝试使用 jquery 使图像旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23685748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com