jQuery关于额外点击功能的间隔问题
我有这个 javascript 代码:
var listitem = $(".landkaart > ul > li"),
len = listitem.length,
index = 0;
$(".landkaart > ul > li:first").addClass('open');
setInterval( function() {
$(".landkaart > ul > li").removeClass('open');
if( ( index + 1 ) >= len )
{
index = 0;
$(".landkaart > ul > li:first").addClass('open');
}
else
{
listitem.eq( index ).next().addClass('open');
}
index++;
}, 5000);
我有 html,
<div class="landkaart">
<ul>
<li><a class="doetinchem" title="Vestiging Doetinchem" href="vestigingen.html">Doetinchem</a>
<div class="doetinchem">
<div class="pijl"></div>
<ul>
<li><h2>Doetinchem</h2></li>
<li>Gildenbroederslaan 4</li>
<li>Postbus 196</li>
<li>7000 AD Doetinchem</li>
<li>Telefoon (0314) 37 70 00</li>
<li>Telefax (0314) 37 70 05</li>
<li><a class="email" href="mailto:doetinchem@kabaccountants" title="Stuur een mail naar: doetinchem@kabaccountants">doetinchem@kabaccountants</a></li>
</ul>
</div>
</li>
</ul>
</div>
该 html 有比这里显示的更多的 li 项目。但现在我的问题是。 现在 .landkaart ul li 项目会旋转。超过 5 秒后,您会看到显示一个新的 li 项目。 但现在必须使用 javascript make sow。当我将鼠标悬停在“.landkaart a”时,landkaart > li 必须展示并且 间隔必须停止。当我用鼠标退出时。然后间隔必须重新开始。
I have this javascript code:
var listitem = $(".landkaart > ul > li"),
len = listitem.length,
index = 0;
$(".landkaart > ul > li:first").addClass('open');
setInterval( function() {
$(".landkaart > ul > li").removeClass('open');
if( ( index + 1 ) >= len )
{
index = 0;
$(".landkaart > ul > li:first").addClass('open');
}
else
{
listitem.eq( index ).next().addClass('open');
}
index++;
}, 5000);
And i have the html,
<div class="landkaart">
<ul>
<li><a class="doetinchem" title="Vestiging Doetinchem" href="vestigingen.html">Doetinchem</a>
<div class="doetinchem">
<div class="pijl"></div>
<ul>
<li><h2>Doetinchem</h2></li>
<li>Gildenbroederslaan 4</li>
<li>Postbus 196</li>
<li>7000 AD Doetinchem</li>
<li>Telefoon (0314) 37 70 00</li>
<li>Telefax (0314) 37 70 05</li>
<li><a class="email" href="mailto:doetinchem@kabaccountants" title="Stuur een mail naar: doetinchem@kabaccountants">doetinchem@kabaccountants</a></li>
</ul>
</div>
</li>
</ul>
</div>
The html have a lot of more li items than here show. But now my question.
Now the .landkaart ul li items rotate. Over 5 sec you see a new li item that come show.
But now must the javascript make sow. That when i hover ".landkaart a" The landkaart > li must be show and
the interval must be stop. When i go with the mouseout. Then the interval must be start again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会这样做:
setInterval
如果光标位于
将鼠标悬停/移出事件添加到 li 元素
I would do that by:
setInterval
if the cursor is over
Add your mouseover/out events to the li elements