IE8 无法正确渲染透明 png——以前从未发生过

发布于 2024-09-06 12:02:57 字数 245 浏览 3 评论 0 原文

到目前为止,我在使用 IE 7 或 8 以及透明 PNG 时从未遇到过问题。我不知道是 Photoshop 还是 Fireworks 可能搞砸了。

我真的不知道还能说什么......

这是链接:

这是主页上的三个褪色图像。

我唯一的猜测是,这与内容背景也是透明的 PNG 有关。

我还下载了 pngcrush,实际上我什至无法让它在命令行中运行,所以任何帮助都会很好。

提前致谢!

I've never had a problem before with IE 7 or 8 and transparent PNGs until now. I don't know if it's Photoshop or Fireworks that is possibly messed up.

I really don't know what else to say..

here is the link:

It's the three fading images on the home page.

My only guess is that it has to do with the content background being a transparent PNG too.

I've also downloaded pngcrush and I actually can't even get that to run in command line, so any help with that too would be nice.

Thanks in advance!

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

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

发布评论

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

评论(3

明天过后 2024-09-13 12:02:58

好的,在您的主索引文件第 14 行中,

  <script type="text/javascript" language="javascript" src="js/pngfix.js"></script>

将其替换为:

<!--[if lt IE 7]>
<script defer type="text/javascript" src="js/pngfix.js"></script>
<![endif]-->

因为这就是您应该如何在 IE 小于 IE 7 的情况下使用 pngfix.js

尝试一下 :) 让我知道。

OK so in your main index file line 14 which says:

  <script type="text/javascript" language="javascript" src="js/pngfix.js"></script>

Replace that with:

<!--[if lt IE 7]>
<script defer type="text/javascript" src="js/pngfix.js"></script>
<![endif]-->

Since that's how you are supposed to use pngfix.js for IE less than IE 7

Try it :) let me know.

别忘他 2024-09-13 12:02:58

如果删除循环插件代码,您将看到背景变得透明。我没有查过原因,但它导致了问题。

将其添加到循环选项中,背景就会消失=)

cleartypeNoBg: true

来源:
http://jquery.malsup.com/cycle/options.html

If you remove the cycle plugin code, you'll see that the backgrounds become transparent. I haven't looked up why, but it's causing the problem.

Add this to the cycle options and the background will go away =)

cleartypeNoBg: true

Source:
http://jquery.malsup.com/cycle/options.html

满天都是小星星 2024-09-13 12:02:58

设置图像的样式属性,如下所示

适用于 ie7 和 ie8

set the style property of the image like this

<img src="<your-url-img>" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='<your-url-img>', sizingMethod='scale');" />

works on ie7 and ie8

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