又是 Superfish 和 Flash。请帮忙

发布于 2024-09-03 03:49:09 字数 776 浏览 6 评论 0原文

我知道这个问题有很多,但我像这样嵌入 Flash:(我不知道如何转义代码,如果它看起来很奇怪,很抱歉)

   var flashvars = {}
   var params = { 
      base: "."
   }              
   var attributes = {}
   swfobject.embedSWF("http://www.zakochaniwfotografii.pl/html5/slideshow/ceremonia.swf", "flashcontent", "932", "450", "9.0.0", false, flashvars, params, attributes);

并且 Flash 出现在此处

    div class="imageHolder" id="flashcontent"

    /div

您可以在这里看到所有内容:http://www.zakochaniwfotografii.pl/html5/fotografia-weselna.php 我正在尝试设置我的网站,但只有 Firefox 可以很好地显示。

我在索引页 zakochaniwfotografii.pl/html5/ 上解决了这个问题,但是由于画廊不同,我在这里以不同的方式嵌入 Flash,所以我无法在下页上执行相同的操作。

我很感激你的帮助, 谢谢。

I know there's a lot about this issue but i'm embedding flash like this: (i don't know how t escape code so sorry if it looks weird)


   var flashvars = {}
   var params = { 
      base: "."
   }              
   var attributes = {}
   swfobject.embedSWF("http://www.zakochaniwfotografii.pl/html5/slideshow/ceremonia.swf", "flashcontent", "932", "450", "9.0.0", false, flashvars, params, attributes);

and the flash appears in here

    div class="imageHolder" id="flashcontent"

    /div

You can see all of it here: http://www.zakochaniwfotografii.pl/html5/fotografia-weselna.php
I'm trying to setup my website but only Firefox displays this well.

I solved the issue on my index page zakochaniwfotografii.pl/html5/ but here i am embeding flash differently due to a different gallery, so i cannot do it the same on the underpages.

I'd appreciate your help,
Thank you.

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

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

发布评论

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

评论(1

神妖 2024-09-10 03:49:09

我找到了。对于那些有同样问题的人,您需要添加

params.wmode = "opaque";

整个内容,如下所示

   var flashvars = {}
   var params = { 
      base: "."
   }        
   params.wmode = "opaque";  
   var attributes = {}
   swfobject.embedSWF("http://www.zakochaniwfotografii.pl/html5/slideshow/engage.swf", "flashcontent", "932", "450", "9.0.0", false, flashvars, params, attributes);

结果适用于任何浏览器: http://www.zakochaniwfotografii.pl/html5/ceremonia-slubna.php

谢谢!
亚历克斯

I found it. For those with the same issue you need to add

params.wmode = "opaque";

tot the whole thing like so

   var flashvars = {}
   var params = { 
      base: "."
   }        
   params.wmode = "opaque";  
   var attributes = {}
   swfobject.embedSWF("http://www.zakochaniwfotografii.pl/html5/slideshow/engage.swf", "flashcontent", "932", "450", "9.0.0", false, flashvars, params, attributes);

The result works in any browser: http://www.zakochaniwfotografii.pl/html5/ceremonia-slubna.php

Thank you!
Alex

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文