无样式内容的 Jquery flash(IE 和 Chrome)
可能的重复:
跨浏览器窗口调整大小事件 - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点猜测,因为我们没有不良行为的演示,但我认为你的问题是图像仍然占用了 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.