Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在带有 css 或其他一些脚本的 html 中使用 SWF 作为正文背景?
body { background-image:url(bg.swf); background-repeat:repeat; background-position:center top; }
(这只是一个例子)
我认为最好的方法是在您的 css 代码中设置 SWF 的位置,以便它始终位于显示的所有其他内容的后面。
您可以为此使用 z-index 属性:
.mySWF { z-index: -1; }
这将创建一个名为“mySWF”的类,它位于其他所有内容的正常位置之后。您需要做的就是通过添加以下内容将其应用于代码中的 SWF 对象:
class="mySWF"
这将把它推到后面。