Flash 视频后面出现的下拉菜单

发布于 2024-10-09 13:21:46 字数 330 浏览 0 评论 0原文

我的下拉菜单出现在 Chrome 和 Internet Explorer 中的 Flash 视频(JW Player)后面。在 FireFox 和 Safari 中不会出现此问题。

我读过很多与更改导航和视频的 wmode 和 z-index 相关的解决方案,但没有成功。

您可以在滑块中的第六张幻灯片上看到该问题: http://ghostpool.com/wordpress/supermassive/< /a>

任何帮助将不胜感激。

My drop down menus are appearing behind my flash videos (JW Player) in Chrome and Internet Explorer. The problem does not occur in FireFox and Safari.

I've read so many solutions relating to changing the wmode and the z-index of the nav and video, with no success.

You can see the issue on the sixth slide in the slider: http://ghostpool.com/wordpress/supermassive/

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

请别遗忘我 2024-10-16 13:21:46

只需将其添加为第一个参数:

<param name="wmode" value="transparent">

just add this as first param :

<param name="wmode" value="transparent">
我是男神闪亮亮 2024-10-16 13:21:46

使用这个方法

 <object id="flash1" data="one.swf" height="500" type="application/x-shockwave-flash" width="800">
 <param name="movie" value="one.swf" />
 <param name="quality" value="High" />
 <param name="wmode" value="opaque" />
 <param name="menu" value="false" />
 </object>

use this method

 <object id="flash1" data="one.swf" height="500" type="application/x-shockwave-flash" width="800">
 <param name="movie" value="one.swf" />
 <param name="quality" value="High" />
 <param name="wmode" value="opaque" />
 <param name="menu" value="false" />
 </object>
蓝眸 2024-10-16 13:21:46

我们在菜单前面的 Flash 电影也遇到了这个问题。
在带有 SharePoint 2013 的 IE 11 中,我们可以按如下方式修复该问题:

我们添加内容编辑器 Web 部件并编辑代码。我们将该对象与“ms-wpContentDivSpace”类一起插入:

<div class="ms-wpContentDivSpace">
    <object width="800" height="500" id="flash1" data="https://www.youtube.com/embed/YouTubeID" type="application/x-shockwave-flash" wmode="transparent"><param name="movie" value="https://www.youtube.com/embed/YouTubeID"/><param name="quality" value="high"/>
    </object>
</div>

We had also this issue with Flash movies in front of the menu.
In IE 11 with SharePoint 2013 we could fix the issue as follows:

We add the content editor web part and edited the code. We insert the object together with the "ms-wpContentDivSpace" class:

<div class="ms-wpContentDivSpace">
    <object width="800" height="500" id="flash1" data="https://www.youtube.com/embed/YouTubeID" type="application/x-shockwave-flash" wmode="transparent"><param name="movie" value="https://www.youtube.com/embed/YouTubeID"/><param name="quality" value="high"/>
    </object>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文