png图片放到网页上有底色
发布网友
发布时间:2022-04-23 06:57
我来回答
共3个回答
热心网友
时间:2022-06-17 03:09
1、把以下代码保存为png.js
复制代码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);
然后在</title>下加这样一句调用(不要去掉<!---->哦):
<!--[if gte IE 5.5000]><script type="text/javascript" src="js/png.js"></script><![endif]-->
这样可以解决低版本浏览器不支持PNG图片透明问题!PNG的图片在网页中确实很养眼
热心网友
时间:2022-06-17 03:09
把 你的 相片 在 PS 里面 保存 为 PNG8
就 是 透明的了~
GIF 也可以~ 是透明~
热心网友
时间:2022-06-17 03:09
你的网页是不是有底色啊.PNG是透明的.如果页面没色该当是不会有色的啊.