我有一个功能,当用户将鼠标悬停在按钮上时,具有 bg 的类会淡出,而悬停类会淡入。我还希望更改文本颜色,这是在 h3 类下的按钮内,但似乎无法触发事件。
我试过 $(this).find('h3')removeClass('grey'); 但没有运气!
这是我的 html 和 jQuery 用于背景工作,也许我没有使用父事件和子事件正确调用它?
HTML
<div class="cta light-grey-bg">
<h3 class="uppercase grey center">
PHP Anchor link here
</h3>
</div>
jQuery
$('.cta').hover(function(){
$(this).removeClass('light-grey-bg', 800);
$(this).addClass('light-grey-bg-fade', 400);
}, function(){
$(this).addClass('light-grey-bg', 400);
$(this).removeClass('light-grey-bg-fade', 800);
});
正如我所说,上面的功能有效,但删除 h3 类灰色没有运气?任何建议都会很棒。