漂亮的海峡前锋:
请查看演示,此时,菜单始终处于活动状态
演示: http://jsfiddle.net/33qeqap3/1/
$('.subtext').mouseenter(function () {
$(this).addClass('hover');
if ($(this).hasClass('hover')) {
$(this).addClass('yes');
}
});
$('.subtext').mouseleave(function () {
$(this).removeClass('hover');
$(this).removeClass('yes');
});
答案 0 :(得分:2)
您可以使用$('a:not(:hover)')
选择光标未悬停的那个。
JS(jQuery):
$('a').on('mouseover', function() {
$('a:not(:hover)').removeClass('arrows');
}).on('mouseout', function() {
$('a:not(:hover)').addClass('arrows');
});
这是fiddle。
答案 1 :(得分:0)
我知道这很简单有点棘手,但有一些css和一些js:
.hovered .arrow{display:none;}
.hovered.hover .arrow{display:block;}
<强> JS:强>
$('ul > li').hover(function(){
$('a').addClass('hovered');
}, function(){
$('a').removeClass('hovered');
});
$('.subtext').hover(function(){
$(this).addClass('hover');
}, function(){
$(this).removeClass('hover');
})
答案 2 :(得分:-1)
所有内容都按预期运行,但您的伪选择器正在选择基本元素而不是悬停元素,请按如下方式调整CSS:
.subtext.hover:after{
content:">";
position:absolute;
}