Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

iframe contents not displaying in FF Windows 7 or Mac

  • 2 个回答
  • 4 人有此问题
  • 1 次查看
  • 最后回复者为 angel12333

more options

I've read almost all posts about frames not displaying in FF, however, I have an odd issue. While I am able to get the iframe to display, NOT ALL of its contents is displaying. It's odd. A sample page is below, click on the virtual tour tab and you will see what I mean. All the code does show up. This also happens for another page with similar type of code. This works fine in Chrome/IE both PC and Mac. Any help would be appreciated. Thanks

http://www.kdnovelties.com/educational/terrance-the-giraffe/personalized_293.html

I've read almost all posts about frames not displaying in FF, however, I have an odd issue. While I am able to get the iframe to display, NOT ALL of its contents is displaying. It's odd. A sample page is below, click on the virtual tour tab and you will see what I mean. All the code does show up. This also happens for another page with similar type of code. This works fine in Chrome/IE both PC and Mac. Any help would be appreciated. Thanks http://www.kdnovelties.com/educational/terrance-the-giraffe/personalized_293.html

被采纳的解决方案

The content is there, but is hidden with display:none style rule, so it looks that if there is script running to show this content then it doesn't finish properly.

<div id="virtualbook" class="kdnbook" style="height: 465px; width: 680px; display: none; margin: auto;"></div>

Removing the display:none makes the book appear for me.

The Web Console also shows an error with the MP3 file:

HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://26ebe445280acec2e3b0-023df79dc48add581f4e26895345aac6.r54.cf1.rackcdn.com/page-flip.mp3 failed.
定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

The content is there, but is hidden with display:none style rule, so it looks that if there is script running to show this content then it doesn't finish properly.

<div id="virtualbook" class="kdnbook" style="height: 465px; width: 680px; display: none; margin: auto;"></div>

Removing the display:none makes the book appear for me.

The Web Console also shows an error with the MP3 file:

HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://26ebe445280acec2e3b0-023df79dc48add581f4e26895345aac6.r54.cf1.rackcdn.com/page-flip.mp3 failed.
more options

Cor-el, Thank you so much!!! I can't believe I did not see this. Remove that and it worked. Again, thank you so much!!!