悬停无法与 jQuery 工具一起使用 - jQuery
当我将 jQuery 工具 添加到我的页面时,链接上的悬停效果不起作用。没有它,它也能工作。
<script src="jquery.js"></script>
<script src="jquery.color.js"></script>
<script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
<script>
$(function() {
$("a").hover(
function() {
$(this).animate({color: "white"}, 400);
}, function() {
$(this).animate({color: "black"}, 400);
});
});
</script>
When I add jQuery Tools to my page, hover effect on links doesn't work. Without it, it works.
<script src="jquery.js"></script>
<script src="jquery.color.js"></script>
<script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
<script>
$(function() {
$("a").hover(
function() {
$(this).animate({color: "white"}, 400);
}, function() {
$(this).animate({color: "black"}, 400);
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您切换颜色插件和工具
标记,则动画将起作用
http: //jsfiddle.net/pxfunc/gJjAZ/
问题是:这会使工具提示不起作用吗? :)
If you switch the color plugin and the tools
<script>
tags the animation workshttp://jsfiddle.net/pxfunc/gJjAZ/
Question will be: does that make the tooltip not work? :)