在 Mac 上强制执行 Flash wmode = window
如何在 Mac 上强制执行 Flash 的 wmode=window?这种模式应该使Flash驻留在比普通HTML元素更高的层上并具有更好的性能。它在 Windows 上运行良好。在 Mac 上,会出现奇怪的结果。 Mac 上的 Chrome 将允许 HTML 元素仅覆盖 Flash 中的非视频元素。另一方面,Mac 上的 Firefox 将允许 HTML 元素覆盖 Flash 中的任何内容。我不希望允许 任何 HTML 元素覆盖 Mac 上 Flash 中的任何内容。
我正在使用 SWFObject 嵌入 Flash。
swfobject.embedSWF(
'flash/player_20110128.swf',
'flashPlayer',
'100%',
'100%',
'9',
'expressInstallSwfUrlTODO.swf',
{},
{
allowfullscreen: true,
wmode: 'window'
},
{},
function(status) {
if (!status.success) {
alert('Failed to embed Flash player');
} else {
alert('embedded');
}
}
);
How do I enforce Flash's wmode=window on Mac? This mode should make Flash reside on a layer higher than normal HTML elements and have better performance. It's working fine on Windows. On Mac, there's strange results. Chrome on Mac will allow HTML elements to cover only non-video elements in Flash. On the other hand, Firefox on Mac will let HTML elements cover anything in Flash. I don't want to allow any HTML elements to cover anything in Flash on Mac.
I'm using SWFObject to embed my Flash.
swfobject.embedSWF(
'flash/player_20110128.swf',
'flashPlayer',
'100%',
'100%',
'9',
'expressInstallSwfUrlTODO.swf',
{},
{
allowfullscreen: true,
wmode: 'window'
},
{},
function(status) {
if (!status.success) {
alert('Failed to embed Flash player');
} else {
alert('embedded');
}
}
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你试过 wmode=direct 吗?
但它需要 Flash Player 10 及更高版本。
Gave you tried wmode=direct?
It requires flash player 10 and beyond though.