如何在 IE 上实现图像透明度

发布于 2024-07-08 06:34:09 字数 1477 浏览 8 评论 0原文

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

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

发布评论

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

评论(4

诠释孤独 2024-07-15 06:34:09

我不记得 IE(任何版本)中的透明 gif 遇到过问题。

首先尝试自行加载图像 - 这会告诉您是否是图像或某些 CSS 规则出了问题。

如果仍然错误,请尝试使用其他程序重新保存。 瘸子就可以了。

编辑:它处于CSS级别,所以我会检查哪些规则具有正在出现的背景颜色......希望应该很容易找到可能的候选者。 将颜色更改为 #ff0000 并检查图像是否按预期变化。 然后找出为什么该规则在 IE 上显示但在 FF 上不显示。 如果您有该页面的 URL,我可以看一下。

I don't recall ever having a problem with transparent gifs in IE (any version).

First off try loading the image on its own - this will tell you if it's the image or some CSS rules going awry.

If it's still wrong, try re-saving it with a different program. The gimp will do.

Edit: It's at the CSS level so I'd check for which rules have the background colour that is appearing... hopefully it should be easy to find a likely candidate. Change the color to #ff0000 and check if the image changes as you expect. Then figure out why that rule shows on IE but not FF. If you have a URL for the page I could take a look.

无悔心 2024-07-15 06:34:09

尝试这两个——弄乱数字,直到你得到正确的结果。 i 4get 适用于 IE,适用于 FF/chrome

opacity: 7;
filter: alpha(Opacity=7);

Try these two -- mess with the numbers until you get it right. i 4get which is for IE and which is FF/chrome

opacity: 7;
filter: alpha(Opacity=7);
月竹挽风 2024-07-15 06:34:09

我通过切换到 png 解决了 gif 透明度问题。 IE7 正确渲染 png Alpha 通道。

在 IE7 中打印透明 png 仍然无法正常工作。

I fixed a gif transparency problem by switching to png. IE7 renderes png alpha channels correctly.

Printing transparent pngs still does not work right in IE7.

猥︴琐丶欲为 2024-07-15 06:34:09

这很奇怪——我在 CSS 文件中我认为被注释掉的语句中发现了问题:

//margin-top: 46px;
//background-color: #377696;

它位于包含两个图像的元素中。

我对每个答案都投了赞成票。 谢谢!

This is weird -- I found the problem in what I thought was commented out statements in the CSS file:

//margin-top: 46px;
//background-color: #377696;

which was in the element that contained both images.

I upvoted each answer. Thanks!

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