我有以下代码来执行不透明度函数,但我希望不包括该类中的一个元素。
例如.bar class。
$(".image").hover(function () {
$(this).animate({opacity: .5}, 'fast')}, function () {
$(this).animate({opacity: 1}, 'fast')
});
任何人都可以帮助我。
答案 0 :(得分:1)
$(".image:not(.bar)").hover(function () {
$(this).animate({opacity: .5}, 'fast')}, function () {
$(this).animate({opacity: 1}, 'fast')
});
答案 1 :(得分:0)
尝试:
$(".image").not('.bar').hover(function () {
$(this).animate({
opacity: .5
}, 'fast')
}, function () {
$(this).animate({
opacity: 1
}, 'fast')
});