IE7 中的 z 顺序问题
Z 索引问题。
div class="menu"...
-----contain----
div...
div class="flash"...
-----contain----
div...
在 Firefox 中,菜单位于 Flash 容器上方。很好。 但在 IE7 中,Flash 位于菜单之上。当菜单打开(显示)时。
Z-index problem.
div class="menu"...
-----contain----
div...
div class="flash"...
-----contain----
div...
In firefox the menu is over the flash contain. it's good.
but in IE7 the flash is over the menu. when menu is open(display).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为 Flash 作为插件嵌入到网站中。某些平台上的某些浏览器(例如较新的 Firefox、Safari)可以处理插件标签上的 z 索引(例如对象或嵌入),而其他浏览器则不能(例如较旧的 Firefox、IE)。这是因为对于浏览器来说,插件是一个外部进程,它不是网站 DOM 的真实部分。
简短的回答:除了不使用闪光灯之外,您对此无能为力。
This is because Flash is embedded as a plugin into a web-site. Some browsers on some platforms (like newer Firefoxes, Safari) can handle z-indexes on plugin-tags (like object or embed), others can't (like older Firefoxes, IE). This is because for the browser the plugin is an external process, which is not a real part of the DOM of the web-site.
Short answer: you can't do anything about this, except of not using flash.
在 object 和 embed 标记上设置
wmode="transparent"
。然后确保您的菜单具有比闪存文件更高的 z-index。如果 IE7/IE6 是问题所在,您可能正在处理非常常见的 IE7 z-index 错误。
Set
wmode="transparent"
on both the object and embed tags. Then ensure your menu has a higher z-index than the flash file.If IE7/IE6 is is the issue, you might be dealing with the very common IE7 z-index bug.