png在IE中背景不透明的解决方法

    技术2022-05-11  69

    png在IE中背景不透明的解决方法如果您浏览的 Web 页包含背景为透明且格式为可移植网络图形 (PNG) 的图像,则图像背景可能显示为灰色,而不是透明的。

    使用 PNG 文件的 Web 开发人员可以使用 AlphaImageLoader 筛选器,如以下示例所示:

    <body bgColor="blue"><!-- This DIV is the target container for the image.  --><DIV ID="oDiv" STYLE="position:absolute; left:140px; height:400; width:400;     filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(     src='image.png', sizingMethod='scale');" ></DIV>

     


    最新回复(0)