zoukankan      html  css  js  c++  java
  • 三种方法解决IE6下png透明失效的问题

    解决IE6下png透明失效的问题-IE6 png 透明 (三种解决方法)

    FF和IE7已经直接支持透明的png图了,下面这个主要是解决IE6下透明PNG图片有灰底的(相当不错 推荐)

    =========== png图片 选择 png 32 格式能保持完美的半透明,或者投影效果 ===========

    IE css滤镜中有一个使png背景透明的滤镜,JavaScript方法也是应用的这个滤镜实现png背景透明的。
    写 法:filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="path/
    PNGimage.png");
    用法示例:
    .png{background:url(
    path/PNGimage.png);}
    * html .png {_background:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='path/PNGimage.png);}

    语法:
    filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSize , src=sURL )

    enabled : 可选项。布尔值(Boolean)。设置或检索滤镜是否激活。true | false true : 默认值。滤镜激活。
    false : 滤镜被禁止。

    sizingMethod : 可选项。字符串(String)。设置或检索滤镜作用的对象的图片在对象容器边界内的显示方式。 crop : 剪切图片以适应对象尺寸。
    image : 默认值。增大或减小对象的尺寸边界以适应图片的尺寸。
    scale : 缩放图片以适应对象的尺寸边界。

    src : 必选项。字符串(String)。使用绝对或相对 url 地址指定背景图像。假如忽略此参数,滤镜将不会作用。

    特性:
    Enabled : 可读写。布尔值(Boolean)。参阅 enabled 属性。
    sizingMethod : 可读写。字符串(String)。参阅 sizingMethod 属性。
    src : 可读写。字符串(String)。参阅 src 属性。

    说明:
    在对象容器边界内,在对象的背景和内容之间显示一张图片。并提供对此图片的剪切和改变尺寸的操作。如果载入的是PNG(Portable Network Graphics)格式,则0%-100%的透明度也被提供。
    PNG(Portable Network Graphics)格式的图片的透明度不妨碍你选择文本。也就是说,你可以选择显示在PNG(Portable Network Graphics)格式的图片完全透明区域后面的内容。

    实例:解决IE6下png透明失效的问题。

    CSS样式:

    .png{_background:url(path/PNGimage.png) no-repeat !important;

    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=noscale, src="path/PNGimage.png");
    background:none;
    }

    .png div{position:relative;}

    HTML代码:

    <div class="png">
    <div>
    CSS背景PNG透明 及 链接失效问题解决
    </div>
    </div>

    =============================================

    第 1 种方法:定义一个样式,给某个div应用这个样式后,div的透明png背景图片自动透明了。

    注意两处图片的路径写法不一样,pngBg.png图片与html文件在相同目录

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <style type="text/css">
    <!--
    .pngBg{
    background-image: url(path/pngBg.png)!important;
    background-repeat: no-repeat;

    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="path/pngBg.png");
    _ background-image: none;
    }
    -->
    </style>
    </head>

    <body>

    <div class="pngBg"></div>

    </body>
    </html>


    第 2 种方法: 给img定义样式,页面上所有透明png即自动透明了。(这方法只对直接插入的图片有效,对背景图无效)

    注意,要准备一个透明的小图片transparent.gif,大小不限。必须放在和html相同的目录,请勿大量使用,否则会导致页面打开很慢!!!


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <style type="text/css">
    .pngImgs img {
    azimuth: expression_r(
    this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
    this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
    this.src = "transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
    this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
    this.runtimeStyle.backgroundImage = "none")),this.pngSet=true);
    }

    </style>
    </head>

    <body>
    换成你的png图片
    <div class="pngImgs">
    <img src="path/png01.png" width="30" height="30" />
    <img src="path/png02.png" width="30" height="30" />
    <img src="path/png03.png" width="30" height="30" />
    </div>

    第 3 种方法:用JS实现,加上一段js代码后,所有插入的透明png自动透明了.(注意,这方法也是只对直接插入的图片有效,对背景图无效)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <script language="JavaScript">
    function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6.
    {
        var arVersion = navigator.appVersion.split("MSIE")
        var version = parseFloat(arVersion[1])
        if ((version >= 5.5) && (document.body.filters))
        {
           for(var j=0; j<document.images.length; j++)
           {
              var img = document.images[j]
              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=\"" + "" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
                 + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
                 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
                 img.outerHTML = strNewHTML
                 j = j-1
              }
           }
        }    
    }
    window.attachEvent("onload", correctPNG);
    </script>
    <style type="text/css">
    <!--
    body {
    background-color: #9999CC;
    }
    -->
    </style></head>

    <body>
    把图片换成你自己的图片
    <img src="path/png04.png" width="30" height="30" />
    <img src="path/png05.png" width="30" height="30" />
    <img src="path/png06.png" width="130" height="36" />
    </body>
    </html>

    </body>
    </html>


  • 相关阅读:
    JobTracker作业启动过程分析
    结构体传参
    getchar()
    char *a与char a[n]的区别
    EOF NULL 之间的区别
    现代方法第15章第三节的程序
    交换机console口连接
    undefined reference问题总结
    二维数组与指针
    数组作为参数传递的时候,被调用的函数内无法计算出数组的大小
  • 原文地址:https://www.cnblogs.com/seamar/p/2115898.html
Copyright © 2011-2022 走看看