栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > Web开发 > Html/CSS > CSS教程

CSS3中的Opacity多浏览器透明度兼容性问题

CSS教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

CSS3中的Opacity多浏览器透明度兼容性问题

用来设定元素透明度的 Opacity 是CSS 3里的一个属性。当然现在还只有少部分浏览器支持。不过各个浏览器都有自己的私有属性来支持,其中包括老版本的Mozilla和Safari:

IE: filter:alpha(opacity)
Mozilla: -moz-opacity
Safari: -khtml-opacity

很不幸的是,你没看见Opera,老版本的Opera并没有什么私有属性可以代替opacity。(新版Opera已经支持opacity)

所以以前用CSS设定一个元素半透明的话,可能会这样写:

CSS Code复制内容到剪贴板
  1. .opacity{   
  2. filter:alpha(opacity=50);   
  3. -moz-opacity:0.5;   
  4. -khtml-opacity:0.5;   
  5. opacity: 0.5;   
  6. }  

用javascript来设定一个元素为半透明:

Javascript Code复制内容到剪贴板
  1. object.filter = "alpha(opacity=" + opacity + ")";   
  2. object.MozOpacity = (opacity / 100);   
  3. object.KhtmlOpacity = (opacity / 100);   
  4. object.opacity = (opacity / 100);   
  5.   

下面给大家介绍css透明度的设置 (兼容所有浏览器)

一句话搞定透明背景!

CSS Code复制内容到剪贴板
  1. .transparent_class {          
  2.       filter:alpha(opacity=50);          
  3.       -moz-opacity:0.5;          
  4.       -khtml-opacity: 0.5;          
  5.       opacity: 0.5;          
  6. }       

UPDATE: I wanted to pull this post out of the archives and update it a bit because it there seems to be a good amount of interest in this subject.

Here is what each of those CSS properties is for:

opacity: 0.5; This is the “most important” one because it is the current standard in CSS. This will work in most versions of Firefox, Safari, and Opera. This would be all you need if all browsers supported current standards. Which, of course, they don’t.
filter:alpha(opacity=50); This one you need for IE.
-moz-opacity:0.5; You need this one to support way old school versions of the Mozilla browsers like Netscape Navigator.
-khtml-opacity: 0.5; This is for way old versions of Safari (1.x) when the rendering engine it was using was still referred to as KTHML, as opposed to the current WebKit .

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/216148.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号