Javascript 滚动菜单 - 第一次接触时鼠标悬停选择无法正常工作
我目前正在使用一个自动循环的选项卡菜单。一旦我将鼠标悬停在其中一个选项卡上,“旋转”应该停止在所选选项卡上,当我将鼠标悬停时,它应该继续从所选选项卡项旋转。
$(document).ready(function() {
$("#featured > ul").tabs({ fx: { opacity: "toggle"} }).tabs("rotate", 1000, true);
$("#featured > ul").mouseover(function() {
$(this).tabs({ event: 'mouseover', fx: { opacity: "toggle"} }).tabs("rotate", 0);
})
$("#featured > ul").mouseout(function() {
$(this).tabs("rotate", 1000);
})
});
目前,当 MouseOver 循环停止但未选择正确的项目时,一旦我 mouseOut 然后再次使用 MouseOver,该功能就可以完美运行! 我的问题在于第一次 mouseOver 时代码似乎没有正确加载?
有什么想法吗?非常感谢您的帮助。
再次感谢您的宝贵时间..
I am currently working with a tab menu which cycles through automatically. Once I mouseover one of the tabs the "rotation" should stop on the selected tab and when I mouseout it should continue rotating from the selected tab item.
$(document).ready(function() {
$("#featured > ul").tabs({ fx: { opacity: "toggle"} }).tabs("rotate", 1000, true);
$("#featured > ul").mouseover(function() {
$(this).tabs({ event: 'mouseover', fx: { opacity: "toggle"} }).tabs("rotate", 0);
})
$("#featured > ul").mouseout(function() {
$(this).tabs("rotate", 1000);
})
});
At the moment the when MouseOver the cycle stops but does not select the correct item, once I mouseOut then MouseOver again the functionality works perfectly!
My issue lies where on first mouseOver the code doesnt seem to be loading correctly?
Any ideas? Help will be really appreciated.
Thanks again for your time..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: