设为首页收藏本站language 语言切换
查看: 1174|回复: 0
收起左侧

JS技巧:在IE浏览器中正确显示PNG透明图片

[复制链接]
发表于 2010-2-20 13:58:08 | 显示全部楼层 |阅读模式
<p >NG图片有很好的品质。阴影效果也不会有杂边,很流畅。如果插入网页的话可以给网站内容增色不少!更重要的是在不增加图片容量大小的情况下提高了页面的图片的质量。对于有复杂背景,如:在有颜色过度背景上插入不规则边框的图片带来极大很便利!<p ><p >但目前IE中对于插入的透明背景的.png的图片是不能正常显示的。IE会自动给".png"格式的图片加个灰色背景。<p ><p >解决这个的方法是增加javascript。具体方法如下:<p ><p >把下面的代码放在head区就可以解决问题了。<p ><p >以下是引用片段:<p ><p ><CENTER><ccid_nobr><table width="400" border="1" cellspacing="0" cellpadding="2"  bordercolorlight = "black" bordercolordark = "#FFFFFF" align="center"><tr><td bgcolor="e6e6e6" class="code" ><pre><ccid_code>&lt;script language=&quot;javascript&quot;&gt; function correctPNG()  { for(var i=0; i&lt;document.images.length; i++) {   var img = document.images   var imgName = img.src.toUpperCase()   if (imgName.substring(imgName.length-3, imgName.length) == &quotNG&quot;)   {    var imgID = (img.id) ? &quot;id='&quot; + img.id + &quot;' &quot; : &quot;&quot;    var imgClass = (img.className) ? &quot;class='&quot; + img.className + &quot;' &quot; : &quot;&quot;    var imgTitle = (img.title) ? &quot;title='&quot; + img.title + &quot;' &quot; : &quot;title='&quot; + img.alt + &quot;' &quot;    var imgStyle = &quot;display:inline-block;&quot; + img.style.cssText     if (img.align == &quot;left&quot;) imgStyle = &quot;float:left;&quot; + imgStyle    if (img.align == &quot;right&quot;) imgStyle = &quot;float:right;&quot; + imgStyle    if (img.parentElement.href) imgStyle = &quot;cursor:hand;&quot; + imgStyle      var strNewHTML = &quot;&lt;span &quot; + imgID + imgClass + imgTitle    + &quot; style=\&quot;&quot; + &quot;width:&quot; + img.width + &quot;px; height:&quot; + img.height + &quot;px;&quot; + imgStyle + &quot;;&quot;   + &quot;filter:progidXImageTransform.Microsoft.AlphaImageLoader&quot;    + &quot;(src=\'&quot; + img.src + &quot;\', sizingMethod='scale');\&quot;&gt;&lt;/span&gt;&quot;     img.outerHTML = strNewHTML    i = i-1   } } } window.attachEvent(&quot;onload&quot;, correctPNG);  &lt;/script&gt;</ccid_code></pre></td></tr></table></ccid_nobr></CENTER><p ><p >也可以把这段代码单独加在一张图片上:<p ><p >以下是引用片段:<p ><p ><CENTER><ccid_nobr><table width="400" border="1" cellspacing="0" cellpadding="2"  bordercolorlight = "black" bordercolordark = "#FFFFFF" align="center"><tr><td bgcolor="e6e6e6" class="code" ><pre><ccid_code>&lt;span style=&quot;filter:progidXImageTransform.Microsoft.AlphaImageLoader(src='http://www.hh010.com/upload_files/article/243/9_x2jmxymale.png',sizingMethod='scale');&quot;&gt;&lt;/span&gt;</ccid_code></pre></td></tr></table></ccid_nobr></CENTER><p ><p >(责任编辑:董建伟)                                 <p align="center"></p></p>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-6 15:48 , Processed in 0.206295 second(s), 23 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表