fancybox 仅适用于 chrome 和 FF 中的最后一个图像
在 Firefox 中,Fancybox 仅适用于最后一个图像(源中的最后一个图像,而不是可视网页)。 在 IE 中一切正常。
我把ID改成了CLASS,但是还没有成功。 您可以在这里找到来源: http://www.luukratief-design.nl/dump/parallax/stack。 html
请帮忙!打扰我好几个小时了。
In firefox Fancybox only works on the last image (last image in the source, not the visual webpage).
In IE everything works fine.
I changed ID into CLASS, but no succes yet.
You can find the source here:
http://www.luukratief-design.nl/dump/parallax/stack.html
please help! Bugging me for hours now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
锚被放置在顶部。
要明白我的意思,请打开 Firebug 的控制台并输入以下内容
现在看看顶部聚集的红色框。
我认为这是因为效果被添加到图像中,而不是父链接中。图像使用
position:absolute
显示,并且由于锚点没有position:relative
,因此锚点会折叠,就像没有内容一样。既然你使用的是 JavaScript,你能做这样的事情吗?
不确定这是否有效,但它可能是在正确的轨道上......祝你好运。
The anchors are being positioned up top.
To see what I mean, open Firebug's console and type this
Now look at the red boxes all bunched up top.
I think this is because the effect is being added to the images, and not the parent links. The images are being displayed using
position: absolute
, and because the anchors don't haveposition: relative
, the anchors are collapsing like they have no content.Since you are using JavaScript, could you do something like this?
Not sure if this will work, but it might be on the right track... good luck.