Accordion 和 jQueryCycle 阻止 href 工作
查看我正在开发的此网站。
这个想法如下:
- 幻灯片放映应该旋转 - 这有效
- 当将鼠标悬停在右侧菜单上时,会出现相应的幻灯片 - 这有效
- 另外,当悬停时导航应展开以显示简短说明 - 这有效
- 当点击汽船、飞机、无人机或“查看”链接时,它会将您带到该页面 - 这是行不通的。我确信这里发生的事情是 JavaScript 正在努力解决这个问题,因为禁用一个链接可以使链接正常工作,而重新启用则会破坏它。
非常感谢您的帮助,
Checkout this site that I'm working on.
The idea is as follows:
-That the slide show is supposed to rotate - this works
-When hovering over the menu on the right the appropriate slide appears - this works
-Also when hovering the nav should expand to show a brief description - this works
-When clicking on Airboat, Aircraft, UAV, or the "view" link it then takes you to that page - this doesn't work. I'm sure what's happening here is that the javascripts are fighting it out, as disabling one makes the links work, reenabling breaks it.
Your help is greatly appreciated,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用这个:
而不是
在你的循环插件中。使用直接后代选择器而不是后代选择器将使其无法匹配页面锚点的手风琴中包含的链接。
Try using this:
instead of
in your cycle plugin. Using the direct descendent selector instead of the descendent selector will keep it from matching on the links contained in the accordion for the page anchors.