gpt4 book ai didi

jquery - 帮助动画 child div JQuery

转载 作者:行者123 更新时间:2023-12-01 03:03:48 26 4
gpt4 key购买 nike

我正在尝试这样的事情

 jQuery(document).ready(function($){
$('nav ul li').hover(
function() {
$('this.menu1bar').animate({ backgroundColor: "#95c938" }, "fast");
$('this.menu2bar').animate({ backgroundColor: "#95c938" }, "fast");
},
function() {
$('this.menu1bar').animate({ backgroundColor: "#a99672" }, "fast");
$('this.menu2bar').animate({ backgroundColor: "#a99672" }, "fast");
}
);
});

此代码的目标是为子 div .menu1bar 和 .menu2bar 设置动画,任何人都可以帮助完成此步骤,该代码适用于 UL 的所有子 div,但我只想要 LI 悬停事件的子元素。

最佳答案

这应该有效:

jQuery(document).ready(function($){
$('#nav ul li').hover(
function() {
$(this).find('.menu1bar,.menu2bar').animate({ backgroundColor: "#95c938" }, "fast");
},
function() {
$(this).find('.menu1bar,.menu2bar').animate({ backgroundColor: "#a99672" }, "fast");
}
);
});

关于jquery - 帮助动画 child div JQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5129267/

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