Home Web Front-end HTML Tutorial IE下的背景半透明处理(滤镜)_html/css_WEB-ITnose

IE下的背景半透明处理(滤镜)_html/css_WEB-ITnose

Jun 24, 2016 am 11:26 AM

现在做的网站首页,导航条等使用了半透明效果,调试的时候鄙人使用了Chrome浏览器,之前有考虑过IE的兼容性问题,但打算,网页完全布局完成后一次性解决。因为只要求兼容到IE8,所以感觉并没有什么太大的问题。

     但是当进入调试阶段的时候,我彻底“崩溃了”IE简直就是反人类的代名词,但问题仍然需要解决。

 

首先,正常情况下,在高版本的浏览器下,对一个盒子的背景使用半透明效果,我们只这样做的:

 

body {     background: url(../images/background.jpg) no-repeat;}.box {     background: rgba( 0, 0, 0, 0.5);}
Copy after login

IE9以上的IE浏览器,以及其他大部分浏览器的高版本都是支持“rgba”的,因此如期的在背景图片之上会出现一层半透明的铺盖。

当使用低版本的IE查看的时候,半透明的效果就不复存在了。(预计当中应该是出现一大块黑色的,当实际情况是背景色完全消失了。因为之前在《HTML&CSS设计与构建网站》(jon duckett著)中讲解到“rgba”属性时提到,当浏览器无法识别时会将其视作“rgb”所以,应当作为“rgb( 0, 0, 0)”处理了,理应是一块黑色。没有预期的效果,应当是浏览器直接忽略了这个元素,所以在编写css样式时将rgb( 0, 0, 0)加在“rgba”元素之前,当浏览器无法识别后面的元素时会采用之前的效果。)

于是就使用了IE的滤镜来处理:

body {     background: url(../images/background.jpg) no-repeat;}.box {     background: rgb( 0, 0, 0);     background: rgba( 0, 0, 0, 0.5);     filter:alpha(opacity=50);     opacity:0.50;}
Copy after login

效果也并没有出来,后来查看文章了解到,使用滤镜处理透明(opacity)效果的时候必须要给盒子设置应有的高度。

修改如下:

body {     background: url(../images/background.jpg) no-repeat;}.box {     width: 1024px;     height: 1024px;     background: rgb( 0, 0, 0);     background: rgba( 0, 0, 0, 0.5);     filter:alpha(opacity=50);     opacity:0.50;}
Copy after login

有一张关于filter:alpha();opacity等的表格,可以解释一些东西:


IE 使用 'filter:alpha(opacity=50);' 通过 Filter 的 alpha 通道滤镜使元素半透明,但元素必须触发 hasLayout 特性。

非 IE 浏览器使用 'opacity:0.5;' 这个 CSS3 草案中的 'opacity' 特性使元素半透明。

所以同时使用 'filter:alpha(opacity=50);' opacity:0.5; 即可保证在所有浏览器中呈现出半透明效果。

如期,得到了我想要的效果。

但并不应止于此,之前提到,为了在无法识别的浏览器上得到背景,所以之前使用了“rbg”元素;可是有时候也会有些意想不到的结果。加之,这样处理当样式多达一定程度时,常常需要为IE单独写一份样式,使用起来并没有得到太大的方便。

在查找解决方法的时候还了解到一种方法,使用“DXImageTransform.Microsoft.gradient滤镜”来处理。这样能在只需要小部分处理透明问题的时候更简洁(仅个人意见,虽然写的更多)。

代码如下:

body {     background: url(../images/background.jpg) no-repeat;}.box {     width: 1024px;     height: 1024px;     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#99000000',endColorstr='#99000000');     /* IE6,IE7 */     -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";     /* IE8 */     background: rgba( 0, 0, 0, 0.5);}
Copy after login

 

关于“FILTER:progid:DXImageTransform.Microsoft.Gradient滤镜使用 ”的使用,查询到相关:

语法: 
filter:progid:DXImageTransform.Microsoft.Gradient(enabled=bEnabled,startColorStr=iWidth,endColorStr=iWidth)
属性: 
enabled:可选项。布尔值(Boolean)。设置或检索滤镜是否激活。 true | false 
  true: 默认值。滤镜激活。 
  false:滤镜被禁止。 

startColorStr:可选项。字符串(String)。设置或检索色彩渐变的开始颜色和透明度。 
其格式为 #AARRGGBB 。 AA 、 RR 、 GG 、 BB 为十六进制正整数。取值范围为 00 - FF 。 RR 指定红色值, GG 指定绿色值, BB 指定蓝色值,参阅 #RRGGBB 颜色单位。 AA 指定透明度。 00 是完全透明。 FF 是完全不透明。超出取值范围的值将被恢复为默认值。 
取值范围为 #FF000000 - #FFFFFFFF 。默认值为 #FF0000FF 。不透明蓝色。 
EndColorStr:可选项。字符串(String)。设置或检索色彩渐变的结束颜色和透明度。参阅 startColorStr 属性。默认值为 #FF000000 。不透明黑色。 
特性: 
Enabled:可读写。布尔值(Boolean)。参阅 enabled 属性。 
GradientType:可读写。整数值(Integer)。设置或检索色彩渐变的方向。1 | 0 
  1:默认值。水平渐变。 
  0:垂直渐变。 
StartColorStr:可读写。字符串(String)。参阅 startColorStr 属性。 
StartColor:可读写。整数值(Integer)。设置或检索色彩渐变的开始颜色。 取值范围为 0 - 4294967295 。 0 为透明。 4294967295 为不透明白色。 
EndColorStr:可读写。字符串(String)。设置或检索色彩渐变的结束颜色和透明度。参阅 startColorStr 属性。默认值为 #FF000000 。不透明黑色。 
EndColor:可读写。整数值(Integer)。设置或检索色彩渐变的结束颜色。 取值范围为 0 - 4294967295 。 0 为透明。 4294967295 为不透明白色。当在脚本中使用此特性时,也可以用十六进制格式: 0xAARRGGBB 。 
说明: 
在对象的背景和内容之间显示定制的色彩层。 
当此效果通过转变显示时,在渐变册色彩层之上的文本程序性的初始化为透明的,当色彩渐变实现后,文本颜色会以其定义的值更新。 

基本使用方法就是:“我们要为它设置起点色(startColorstr)和终点色(endColorstr)。在单色透明的情况下,这两个值是相同的。它们的取值是一个八位的十六进制值,前两位表示alpha通道值,00表示完全透明,FF表示完全不透明;后六位则是这个颜色的RGB值。”

 

     至此,IE下半透明处理基本完成。除了IE其他浏览器,其他浏览器几乎都支持“rgba“属性,所以仅仅是IE的处理比较繁琐。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles