将图像替换为 Flash 对象而不闪烁

发布于 2024-11-27 10:25:42 字数 322 浏览 0 评论 0原文

让白色背景上有一个(显示:内联)图像:

<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 技术交流群。

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

发布评论

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

评论(1

无所的.畏惧 2024-12-04 10:25:42

我尝试将A的背景设置为黑色,但只是一小部分
矩形填充了颜色(因为A不是一个块
元素)。

有没有办法避免闪烁? 内联性质
必须保留元素。

尝试在a上使用display: inline-block

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.

Try display: inline-block on the a.

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