首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

为啥设置的滤镜效果根本没有用

2013-09-14 
为什么设置的滤镜效果根本没有用?htmlheadmeta http-equivContent-Type contenttext/html char

为什么设置的滤镜效果根本没有用?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>滤镜</title>
<style type="text/css">
body
{
margin:10px;
}
.alpha1
{
filter:alpha(opacity=100,finishopacity=0,style=3);
}
.alpha2
{
filter:alpha(opacity=0,finishopacity=100,style=3);
}
</style>
</head>

<body>
<center>
<img src="file:///C|/Users/asus/Pictures/picture/图片/349030[1].jpg" />
<img src="file:///C|/Users/asus/Pictures/picture/图片/349030[1].jpg" class="alpha1" />
<img src="file:///C|/Users/asus/Pictures/picture/图片/349030[1].jpg" class="alpha2" />
</center>
</body>
</html>


[解决办法]
滤镜 filter 只能在IE 下有效, ie10 好像开始不支持 这样写了,试用css3来实现 

热点排行