MooTools 幻灯片和 Spry 选项卡
我是这个论坛的新手,我为客户构建的网站遇到了一个棘手的问题。我的 MooTools 幻灯片播放遇到问题。我的页面有 4 个 Spry 选项卡,其中 3 个有幻灯片。我已经为多个幻灯片设置了页面,但只有第一个选项卡可以正常工作。这是我遇到的两个问题:
缩略图在第一个选项卡上正常工作,但对于其他选项卡,它们似乎彼此堆叠,并且当您将鼠标悬停时会颤动。
当您切换到不同的选项卡时,您会在幻灯片屏幕的右上角看到一个较小的照片伪影,持续几秒钟(我有一种感觉,当问题 1 解决后,这种情况就会消失)。
我从另一个论坛得到了帮助: 问题可能是幻灯片隐藏时无法正确计算尺寸。这确实是 javascript/DOM 操作的一个普遍问题:当一个元素设置为 display:none 时 - 就像隐藏的选项卡 - 其中的节点没有高度/宽度。解决方法是在选项卡可见后初始化每个幻灯片。
作为 js 实现者而不是编码器,我真的不知道如何完成此操作,甚至不知道它是否有效。如何在选项卡可见性上初始化每个幻灯片?
您可以在此处查看该网站: 任何
帮助都会是赞赏!
谢谢,内克塔尔 72
I'm new to this forum and I have a sticky problem with the website that I'm building for my client. I am having trouble with my MooTools Slideshow. I have a page with 4 Spry tabs and 3 of them have slideshows. I've set up the page for multiple slideshows, but only the first tab works correctly. These are 2 issues I'm having:
The thumbnails work properly for the first tab, but for the other tabs they seem to stack upon one another and flutter when you mouseover.
When you switch to a different tab, you get a smaller photo artifact for a couple of seconds in the right corner of the slideshow screen (I have a feeling this will go away when #1 is resolved).
I was given this help from another forum:
The issue is probably that slideshow can't calculate dimensions properly when it is hidden. It's really a general issue with javascript/DOM-manipulation: when an element is set as display:none - like the hidden tabs - nodes inside of them have no height/width. The workaround would be to initialize each slideshow once the tab is visible.
Being a js implementer and not a coder, I don't really know how to accomplish this or even if it will work. How would I initialize each slideshow on tab visibility?
Here is where the website can be viewed:
http://www.interimdesigngroup.com/threesprings/area.shtml
Any help would be appreciated!
Thanks, Nektar 72
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将所有三个选项卡的幻灯片初始化替换为以下内容:
Replace slideshow initialization for all three tabs with the following: