我正在尝试实现侧边栏,并且当鼠标光标停止移动时,两个导航按钮会延迟隐藏。当鼠标光标再次移动时,应该出现元素。代码工作正常,但是......如何防止在悬停状态下隐藏三个元素。
我应该在哪里添加 clearTimeout 悬停状态?我是不是该?对不起,我是 jQuery 的初学者。
这是我的代码:
html:
<div class="container">
<nav>
<ul>
<li><a href="#">something</a></li>
</ul>
</nav>
<div class="prev">prev</div>
<div class="next">next</div>
</div>
CSS
.container { position: absolute; left: 20px; top: 2px; right:2px; bottom: 20px; border: 1px solid red; }
nav { position: absolute; left: 0; top:0; bottom: 0; border: 1px solid blue; }
.prev { position: absolute; width: 50px; height: 30px; bottom: 0; left: 45%; border: 1px solid green; }
.next { position: absolute; width: 50px; height: 30px; top: 0; left: 45%; border: 1px solid green; }
JS
var timeout = false;
var count = $(function() {
$('.container').mousemove(function(e) {
clearTimeout(timeout);
timeout = setTimeout(function() {
console.log('hide slideshow elements');
$('.container nav').fadeOut();
$('.prev').fadeOut();
$('.next').fadeOut();
}, 2500);
});
});
$(".container").mousemove(function() {
console.log('show slideshow elements');
$('.container nav').fadeIn();
$('.prev').fadeIn();
$('.next').fadeIn();
});
和 JSfiddle