Would you like to react to this message? Create an account in a few clicks or log in to continue.
搜索
 
 

结果按:
 


Rechercher 高级搜索

关键词

最新主题
» js在html中的加载执行顺序
ie6下使PNG背景图片透明的方法 Empty10/09/13, 06:50 am 由 design_ss

» javascript 函数的方法call()和apply()
ie6下使PNG背景图片透明的方法 Empty09/09/13, 05:10 am 由 design_ss

» JS中typeof与instanceof的区别
ie6下使PNG背景图片透明的方法 Empty08/08/13, 11:10 am 由 design_ss

» JS中的构造函数解析
ie6下使PNG背景图片透明的方法 Empty08/08/13, 09:44 am 由 design_ss

» js对象属性方法大总结
ie6下使PNG背景图片透明的方法 Empty08/08/13, 08:46 am 由 design_ss

» js中的值类型和引用类型小结 文字说明与实例
ie6下使PNG背景图片透明的方法 Empty08/08/13, 06:35 am 由 design_ss

» CSS3中轻松实现渐变效果
ie6下使PNG背景图片透明的方法 Empty05/07/13, 09:48 am 由 design_ss

» jQUery 常用实例
ie6下使PNG背景图片透明的方法 Empty03/07/13, 09:56 am 由 design_ss

» mask_layer 遮照
ie6下使PNG背景图片透明的方法 Empty03/07/13, 08:18 am 由 design_ss

十一月 2024
周一周二周三周四周五周六周日
    123
45678910
11121314151617
18192021222324
252627282930 

日历 日历

合作伙伴
免费论坛

免費論壇




ie6下使PNG背景图片透明的方法

 :: 前端制作 :: 重构

向下

ie6下使PNG背景图片透明的方法 Empty ie6下使PNG背景图片透明的方法

帖子  design_ss 13/03/13, 06:48 am

语法:

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 地址指定背景图像。假如忽略此参数,滤镜将不会作用。

说明:

在对象容器边界内,在对象的背景和内容之间显示一张图片。并提供对此图片的剪切和改变尺寸的操作。如果载入的是PNG(Portable network Graphics)格式,则0%-100%的透明度也被提供。

PNG(Portable network Graphics)格式的图片的透明度不妨碍你选择文本。也就是说,你可以选择显示在PNG(Portable network Graphics)格式的图片完全透明区域后面的内容。

了解了以上的内容,可以写一段简单的CSS代码来实现:

.news{width:364px;height:212px;filter:
progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',
sizingMethod='scale',
src="/templets/images/news_bg.png");background:none; }


这段简单的CSS代码就可以在IE中正常的显示PNG透明背景,但是会发现在FF下不会出现背景,分析原因:AlphaImageLoader滤镜只能被IE支持,FF是不支持该滤镜的。

有些初学者可能会在代码中添加这样一段:background-image: url(/templets/images/news_bg.png);

添加这样一段代码虽然能解决FF下的问题,都是IE又出现问题:新的背景会覆盖在滤镜的背景之上,导致滤镜显示无效,这时候就用到IE和FF对CSS读取的区别特性了:

我们可以分开IE6跟IE7、FF,因为IE6能识别样式前“_”号,而IE7、FF却不行,所以我们先写IE7和FF能识别的CSS:

.news1{width:364px;height:212px;background:url(/templets/images/news_bg.png) top no-repeat;}

而后在代码后加上AlphaImageLoader滤镜代码,并使用“_”号前缀,所以最终完整的代码是这样的:

.news1{clear:both;float:left;width:364px;height:212px;margin-bottom:16px;background:url(/templets/images/news_bg.png)
top no-repeat;_filter:
progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',
sizingMethod='scale',
src="/templets/images/news_bg.png");_background:none;}


这样效果可以实现,也不增加多少代码量。

不过需要注意的是:AlphaImageLoader滤镜会导致该区域的链接和按钮无效,解决的办法是为链接或按钮使用相对定位,或者添加:position: relative;这样条代码,使其相对浮动。

最后AlphaImageLoader无法设置背景的重复,所以对图片的切图精度会有很高的精确度要求。
===================================================================
这个问题其实包括两个方面,一是作为图片的透明度问题,即似乎用IMG标签的PNG图片的透明度,二是PNG图片作为背景情况下的图片透明度问题。对于第一个问题,如果是单张图片的话,可使用如下方法解决:


ie6下使PNG背景图片透明的方法 090831165393312
<!--empty.gif为一张全透明的空白图片 没有则留空-->
<img id='show_comment' src="empty.gif" style="width:100px;height:12px;cursor:pointer;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='001.png',sizingMethod='image')">


如果图片很多的话,则可使用如下方法处理:

ie6下使PNG背景图片透明的方法 090831165393312
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
};
};
};
if(navigator.userAgent.indexOf("MSIE")>-1)
{
window.attachEvent(
"onload", correctPNG);
};

design_ss

帖子数 : 122
积分 : 373
威望 : 0
注册日期 : 11-12-28

返回页首 向下

返回页首


 :: 前端制作 :: 重构

 
您在这个论坛的权限:
不能在这个论坛回复主题