将图像替换为 Flash 对象而不闪烁
让白色背景上有一个(显示:内联)图像:
<a href="#"><img src="..."></a>
然后我使用 JavaScript 将 IMG 节点替换为 Youtube IFRAME。在加载 Youtube 剪辑时,图像会消失,并向用户显示白色背景一秒钟。
问题是:我不想要那种黑白黑的闪烁。
我尝试将 A 的背景设置为黑色,但只有矩形的一小部分被颜色填充(因为 A 不是块元素)。
有没有办法避免眨眼?必须保留元素的内联性质。如果不引入额外的 HTML 元素就更好了。
Let there is a (display:inline) image on a white background:
<a href="#"><img src="..."></a>
Then I replace the IMG node with an Youtube IFRAME using JavaScript. The image disappears and the white background is shown to user for a second while the Youtube clip is being loaded.
The problem: I don't want that dark-white-dark blinking.
I tried to set A's background to color black, but just a small part of the rectangle was filled with the color (because A is not a block element).
Is there a way to avoid the blinking? The inline nature of the elements must be preserved. It's better if no additional HTML elements would be introduced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在
a
上使用display: inline-block
。Try
display: inline-block
on thea
.