如果类不是 .active,则 jQuery 动画
我正在尝试为我的导航的背景颜色设置动画,我可以使用它
$(".mainNav li a").hover(function () {
$(this).stop().animate({ backgroundColor: "#EF4D23" }, 500);
}, function () {
$(this).stop().animate({ backgroundColor: "#303030" }, 500);
});
下一步我想做的只是在标签的类不是 .active 的情况下才执行此动画,所以我正在尝试:
$(".mainNav li a").hover(function () {
if ($(this).not(".active")) {
(function () {
$(this).stop().animate({ backgroundColor: "#EF4D23" }, 500);
}, function () {
$(this).stop().animate({ backgroundColor: "#303030" }, 500);
});
}
});
但它没有做任何事情或给我一个错误。
感谢您的任何帮助。
I am trying to animate the background colour of my nav which I can get to work with
$(".mainNav li a").hover(function () {
$(this).stop().animate({ backgroundColor: "#EF4D23" }, 500);
}, function () {
$(this).stop().animate({ backgroundColor: "#303030" }, 500);
});
What i want to do next is only do this animation if the class of the tag is not .active, so I am trying:
$(".mainNav li a").hover(function () {
if ($(this).not(".active")) {
(function () {
$(this).stop().animate({ backgroundColor: "#EF4D23" }, 500);
}, function () {
$(this).stop().animate({ backgroundColor: "#303030" }, 500);
});
}
});
But it is not doing anything or giving me an error.
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您想使用
.is()
而不是.not()
(.not()
将过滤元素,.is ()
根据是否匹配选择器返回一个布尔值)You want to use
.is()
rather than.not()
(.not()
will filter the elements,.is()
returns a boolean based on whether it matches the selector)尝试以下操作:
try the following: