gpt4 book ai didi

jquery - 如何使用 JQuery 只淡化父子元素中的特定元素?

转载 作者:行者123 更新时间:2023-12-01 04:51:34 25 4
gpt4 key购买 nike

如何才能使每个 .nav 中的 P 不褪色?

http://jsfiddle.net/vbqfD/

$(document).ready(function () {
$('.nav').mouseenter(function () {
$(this).fadeTo('fast', .5);
});

$('.nav').mouseleave(function () {
$(this).fadeTo('fast', 1);
});

});

最佳答案

您将元素的不透明度设置为 0.5,这也会影响子元素,我建议:

.nav {
...
background: rgba(130, 202, 255, 1);
-moz-transition: all 400ms;
-webkit-transition: all 400ms;
transition: all 400ms;
}

.nav:hover {
background-color: rgba(130, 202, 255, 0.5);
}

http://jsfiddle.net/NwRXs/3/

关于jquery - 如何使用 JQuery 只淡化父子元素中的特定元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19204500/

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