为什么我用DW设计网页,我用firewoke弄了一个PNG图片,插入到网页上就有...
发布网友
发布时间:2022-04-29 23:19
我来回答
共3个回答
热心网友
时间:2022-04-25 15:19
这是正常现象,PNG图片在网页中是有可能出现这种带背景的情况出现的!加上这段代码可以解决:
<!--[if gte IE 6]>
<script type="text/javascript">
function correctPNG()
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle
if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
var strNewHTML = "<span " + imgID + imgClass + imgTitle
+ " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
img.outerHTML = strNewHTML
i = i-1
}
}
}
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->
IE6以下的浏览器里面的PNG图片就会出现你这种情况,你可以更新一下浏览器,也可以做网页里面加入以上代码,这样PNG图片就不会有背景色了。
再给你个建议,做网页一般用GIF格式的图片,不会出现你这种情况。
热心网友
时间:2022-04-25 16:37
这是一个ie6的bug 很伤大雅
网上很多解决这个bug的方法
本人屡试不爽的方法就是
方法1:
首先下载一个js文件unitpngfix.js 放到你的js文件夹里 还有个名为clear.gif的图片 放到你的图片文件夹里 至于是在哪里下载的我都忘记了 你可以留下QQ 我发给你邮箱 这是自己攒下来的东西,然后
<!--[if lt IE 7]>
<script type="text/javascript" src="js/unitpngfix.js"></script>
<![endif]-->
在head之间加上这段代码
方法2:
background:url(a.png) repeat-x 0 0;
_background:none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/lvquan.png" ,sizingMethod="crop");
方法3:图片换成png8格式
等等好多方法可以解决 lz可以网上搜下,其实只要掌握一种基本就OK了,慢慢学习积累经验
热心网友
时间:2022-04-25 18:12
支持下面的说法