无样式内容的 Jquery flash(IE 和 Chrome)

发布于 2024-12-17 13:31:26 字数 1094 浏览 0 评论 0原文

可能的重复:
跨浏览器窗口调整大小事件 - JavaScript / jQuery
无样式内容的 Jquery flash(仅限 IE)

我有一个 div ( #container),在点击事件中,我交换了图像并将其替换为 YouTube 视频:

$("#feature_content").click(function(){
                var iframe = "<iframe />";

                var url = "http://www.youtube.com/embedlink";

                 $(iframe, {
                    name: 'videoframe',
                    id: 'videoframe',
                    src: url,
                    width: '600',
                    height: '335',
                    frameborder: 0,
                    allowfullscreen: true
                }).appendTo(this);

                $(this).find('img').fadeOut(function() { $(this).remove();});

    });

但是,在视频开始播放之前,我在 div 下面看到了一些无样式的内容(iframe)。

IE 和 Chrome 中会出现这种情况,但 Firefox 中不会出现这种情况

Possible Duplicate:
Cross-browser window resize event - JavaScript / jQuery
Jquery flash of unstyled content (IE only)

I have a div (#container) where on a click event I swap out an image and replace it with a YouTube video:

$("#feature_content").click(function(){
                var iframe = "<iframe />";

                var url = "http://www.youtube.com/embedlink";

                 $(iframe, {
                    name: 'videoframe',
                    id: 'videoframe',
                    src: url,
                    width: '600',
                    height: '335',
                    frameborder: 0,
                    allowfullscreen: true
                }).appendTo(this);

                $(this).find('img').fadeOut(function() { $(this).remove();});

    });

However, I am getting a flash of unstyled content (the iframe) BELOW the div before the video starts playing.

This is happening in IE and Chrome, but not Firefox

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

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

发布评论

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

评论(1

合约呢 2024-12-24 13:31:26

有点猜测,因为我们没有不良行为的演示,但我认为你的问题是图像仍然占用了 iframe 应该占用的空间。

您应该使用 CSS position:absolute 属性来确保它们在父 div 中具有相同的相对位置。

Guessing somewhat, as we don't have a demonstration of the bad behaviour, but I think your problem is that the image is still taking up the space that's supposed to be occupied by the iframe.

You should use CSS position: absolute attributes to ensure that they both have the same relative position within the parent div.

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