Flash 游戏 wmode=透明替代
我需要嵌入一些 Flash 游戏,但由于性能问题,我不允许使用 wmode=transparent sideFX。我需要在 SWF 上方放置一个 DIV,但如果没有 wmode,SWF 始终位于顶部。
当 div 可见时隐藏 swf 会重置闪光灯。 有什么想法吗?
I need to embed some flash games but I'm disallowed to use wmode=transparent due to performance issues & sideFX. I need to place a DIV above the SWF, but without the wmode the SWF is always on top.
Hiding the swf when div is visible resets the flash.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有
wmode=transparent
,我认为您无法将 HTML 定位在 swf 上。但是,如果您愿意隐藏闪光灯,也许您可以尝试使用 CSS
position:absolute;left:-99999px
将闪光灯定位在屏幕之外,以获得相同的效果。Without
wmode=transparent
, I think you are out of luck for positioning HTML over the swf.However, if you were willing to hide the flash, maybe you can try positioning the flash off screen with CSS
position:absolute;left:-99999px
to get the same effect.