NG半透明背景图片效果
PNG图片在网页设计中扮演着一个很重要的角色,利用PNG图片的特点可以制作出实用,绚丽的效果,可是对于PNG图片的支持却不是很理想,Firefox和Opera对PNG支持的比较好,特别是Firefox浏览器。可是IE却不理PNG,使得设计者无法很随意的使用png图片。
IE5.5+的 AlphaImageLoader滤镜为通向png提供了一个道路,如果他载入的是PNG(Portable Network Graphics)格式,则0%-100%的透明度也被提供。我们就利用这个滤镜和hack来设计一个半透明png背景图片的模型。
经过多方面的实验比较了2种方法:css控制和js控制。总结如下:
css中镶入如下代码控制:
#png{background-image:url(images/jzz_02.png) no-repeat !important;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled="true", sizingMethod="scale", src="images/jzz_02.png");
background:none;}
比较累,需要一个个添加代码。而且用了滤镜后背景图片不支持background-position定位
具体代码:
//总css文件 style.css
#png{
background:url(image.png) no-repeat center !important;
}
//CSS代码中镶入ie6配置CSS配置文件 ie6.css
#png{
background:none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png',enabled='true', sizingMethod='scale');
}
//html格式
<head>
...
<link href="style.css" rel="stylesheet" type="text/css" />
<!--[if IE 6]>
<link href="ie6.css" rel="stylesheet" type="text/css" />
<![endif]-->
</head>
...
注:style.css文件里的图片url是相对于css文件的路径,ie6.css文件里src是相对于html文件的路径
JS控制:
比较方便,适合懒人- -!,但bug比较多,效率相对于css要低
比较常用的js代码:
1.
correctpng.js
// JavaScript Document
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
}
}
}
function alphaBackgrounds(){
var rslt = navigator.appVersion.match(/MSIE (d+.d+)/, '');
var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5);
for (i=0; i<document.all.length; i++){
var bg = document.all[i].currentStyle.backgroundImage;
if (bg){
if (bg.match(/.png/i) != null){
var mypng = bg.substring(5,bg.length-2);
//alert(mypng);
document.all[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+mypng+"', sizingMethod='crop')";
document.all[i].style.backgroundImage = "url('')";
//alert(document.all[i].style.filter);
}
}
}
}
html
<head>
...
<script type="javascript" src="correctpng.js"></script>
<!--[if IE 6]>
<script>
if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) {
window.attachEvent("onload", correctPNG);
window.attachEvent("onload", alphaBackgrounds);
}
</scrpit>
<![endif]-->
</head>
注 这个js方法不支持重复背景,如果背景重复的话就只能显示一个,别的都支持。
2.
使用先人写好的iepngfix类
这个类里面有3个文件
blank.gif替换为空白的图片
iepngfix.htc核心文件
iepngfix_tilebg.js貌似是控制重复背景的文件,不过我用了以后直接页面都显示不出- -!
具体用法:
在css文件里加入
img,div{
behavior: url("iepngfix.htc") ;
}
在html里head之间调用iepngfix_tilebg.js
注意最好blank.gif和htc文件放一个文件夹里 习惯都放在image文件夹里
总结:我个人认为使用css文件会比较好点,这对程序美观度和效率都会有一定的提高。
总结完毕。
==================================================================
另外的方法
新建一个叫png_fix.css的文件,内容如下:
* html img,* html .png {
behavior: expression(( this.runtimeStyle.behavior = "none") &&(
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 =
"image/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 )
);
}
然后在HTML文件的<LINK>部分加入<>
最后自己做一个1×1像素的透明gif图片,存为transparent.gif。
使用的时候是这样:
1、如果是在HTML里面直接插入的PNG图片,就直接会处理掉;
2、如果是在css里面写的用作背景的图片,需要在
里面加上class="png",最后就是
;
3、如果是链接,需要加上cursor: pointer;
测试下来使用没有问题,非常完美。
=========================================================================
亲测成功的方法
把下面的代码放在head区就可以解决问题了。
<!--[if gte IE 5.5000]><script type="text/javascript" src="js/pngfix.js"></script><![endif]-->
pngfix.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);
分享到:
相关推荐
在提供的压缩包文件中,`checkerboard.gif`可能是用于模拟透明背景的棋盘格图像,`blank.gif`可能是用于透明效果的占位符,`iepngfix.htc`是上面提到的HTC行为文件,`index.html`是示例网页,`alixixi.png`可能是...
在早期的网页设计中,IE6.0浏览器的兼容性问题常常困扰着开发者,其中最典型的两个问题是:PNG图片的背景透明无法正确显示以及带有透明背景的链接无法正常点击。这两个问题在现代浏览器中通常不是问题,但在IE6.0上...
在探讨“ie6z中兼容页面中所有png图片透明”的问题时,我们首先需要理解几个关键概念:Internet Explorer 6(简称IE6),PNG图片格式,以及如何在IE6中处理PNG图片的透明性。 ### Internet Explorer 6 IE6是微软在...
在网页设计中,PNG图像格式因其支持透明度而广受欢迎,尤其在需要半透明或精确裁剪背景的情况下。然而,有时我们可能会遇到PNG图片在网页上显示为非透明或者显示为GIF图片的问题。本教程将详细介绍如何确保PNG图片在...
在早期的网页设计中,IE6(Internet Explorer 6)浏览器对PNG图片格式的支持存在一些问题,特别是对于PNG-24格式的图片,它无法实现背景透明,这给设计师带来了很大的困扰。PNG-24格式提供了24位颜色深度,支持 ...
解决IE6下的PNG透明问题有多种方法,以下是几种常见的解决方案: 1. **CSS滤镜法**: 使用CSS的`filter`属性,可以强制IE6渲染PNG透明。例如: ```css .ie6_png { filter: progid:DXImageTransform.Microsoft....
然而,在IE5.5和6中,PNG24(包含Alpha透明通道的PNG格式)的图片会显示为黑色背景或者无法正确显示透明效果,这给网站设计者带来了困扰。 "ie 网站全部png图片修复透明(js)"这个项目正是为了解决这个问题。它...
这样,在标准浏览器中png24格式的图片会覆盖在png8格式图片之上,而对于ie6,由于它不支持png24透明,所以会显示下面的png8格式图片。 4. JavaScript兼容性插件 如果项目允许,可以使用JavaScript来改善png24图片...
在网页设计中,有时我们需要创建一个半透明的遮罩层,以实现弹窗效果,让用户的注意力集中在特定的内容上,同时不影响页面背景的可见性。本文将深入探讨如何使用CSS来实现在Internet Explorer(IE)和Firefox等...
4. **PNG透明问题**:IE6不支持PNG24的透明特性,但可以通过使用`AlphaImageLoader`滤镜解决,如`filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img.png', sizingMethod='scale')`。 5. `...
例如,IE6不支持透明背景图片、浮动元素的父级高度自动计算、选择器优先级等特性。其中,一个典型的问题是IE6在处理具有透明PNG图像时的显示错误。为了解决这个问题,开发者通常采用以下几种方法: - **使用滤镜**...
IE6中,PNG 图片的透明度可能无法正确显示。可以通过使用 IE 专有的滤镜来解决这个问题。 **14. 移除超级链接的虚线** 默认情况下,某些浏览器会在鼠标悬停于超链接上时显示虚线框。可以使用 `outline: none` 或 `...
需要注意的是,在上述代码中提到,IE6无法进行完整的美化,这主要是因为IE6本身对CSS的支持不完善,例如不支持:hover伪类和不支持PNG格式的透明图片。因此,只能应用部分美化效果。 最后,需要注意文件上传组件的...
1. 图片格式:常见的图片格式有PNG-8、PNG-24、JPEG、GIF和SVG,每种格式有不同的应用场景,比如PNG适合透明图像,JPEG适合高质量图片,SVG适合矢量图形。 2. 微格式(Microformats):微格式是一种将结构化数据...
对于IE6中PNG图片的半透明问题,可以通过以下方式解决: ```css *background: none; *filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='crop', src='template/flower/...
确保层显示在Flash之上的方法是在CSS中使用`z-index`属性,赋予层更高的值。 ### UI设计基础知识 UI由用户界面和交互设计两部分组成,涉及元素间的交互关系,如按钮、菜单和输入字段的布局与功能。 ### 布局与...
9. **表格背景设置**:可以使用颜色或图片作为表格背景图,并且支持使用任何GIF或JPEG格式的图片文件。 10. **HTML换行处理**:在HTML中,直接在代码中按下回车键并不会导致内容换行,正确的做法是使用` `标签。...
29、让IE6支持覆盖下拉控件的同时也支持透明皮肤 30、优化锁屏渐变动画 31、修复范围限制函数没有生效的错误 32、修复一处笔误,忘记声明变量导致泄漏出去污染全局 v2.0.9 1、 优化代码结构,弹出后仍可访问...
网络中最常用的图片格式有JPEG、PNG、GIF、SVG等。JPEG(Joint Photographic Experts Group)适用于照片或色彩丰富的图像,它以压缩方式存储,能有效减少文件大小。PNG(Portable Network Graphics)提供透明效果,...
网页设计应考虑色彩搭配不超过三种,图像格式如JPEG用于高质量图片,PNG用于透明效果,GIF用于动画。常见的网页版式有F型、Z型等,黑色背景上的文字宜用高对比度颜色,如白色。红色加黑会产生深红色调,给人成熟稳重...