sIFR 3.0 和 swmode
以前版本的 sIFR 允许用户输入“sWmode: 'transparent'”以避免 Flash 对象覆盖在屏幕上的常规 HTML 对象上的常见问题,无论任一元素的 z-index 为何。
如何在 sIFR 3.0 中复制此行为?
Previous versions of sIFR allowed users to enter "sWmode: 'transparent'" to avoid the common problem of Flash objects being overlayed on regular HTML objects on screen, no matter the z-index of either elements.
How do I replicate this behavior in sIFR 3.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你只需要添加:
在发送到 sIFR.replace() 的对象中
I think you just need to add:
in the object you send into sIFR.replace()
事实上,您可以使用
或
但也
或
任何使您的船漂浮的:)
请注意,浏览器通常会遇到透明 Flash 电影的问题,因此通常指定背景颜色是更好的选择。
Indeed, you can use
or
But also
or
Whatever floats your boat :)
Do note that browsers usually have issues with transparent Flash movies, so usually specifying a background color is the better option.
这些表达式不会以完全相同的方式解释。 例如,在 Chrome 10 中,
wmode: 'transparent'
将导致替换文本后面出现黑色背景,而wmode: 'opaque'
则按其应有的方式工作。 奇怪的!The expressions will not be interpreted all the same way. E.g. in Chrome 10
wmode: 'transparent'
will cause a black background behind the replaced text, whilewmode: 'opaque'
works like it should. Strange!