📄 css0503.htm
字号:
<html>
<head>
<title>洪恩在线 - CSS教程</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="/pub/css/home.css">
<link rel="stylesheet" href="/pc/homepage/homepage.css">
<meta name="keywords" content="电脑乐园,电脑,乐园,交互教程,交互,教程,教育">
</head>
<body bgcolor="white" text="black" topmargin="10" leftmargin="0" marginwidth="0" marginheight="10">
<!--顶部开始-->
<script language="Javascript" src="/pub/js/head.js"></script>
<!--顶部结束-->
<table width="760" height="20" border=0 cellspacing="0" cellpadding="0" align="center">
<tr>
<td height=20 class="p1" bgcolor="#E8E8E8" align="left"><img src="/pc/img/blank.gif" width="12" height="8"><font color="#FF9966">当前位置</font>:<a href="/default.htm" class="under">洪恩在线</a>
-> <a href="/pc/index.htm" class="under">电脑乐园</a> -> CSS教程</td>
</tr>
</table>
<table width="760" border=0 cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="15"></td>
</tr>
</table>
<table width="760" cellspacing="0" border=0 cellpadding="0" align="center">
<tr>
<td width="145" valign="top" bgcolor="#E8E8E8" align="left" style="color:blue" class="p1" height="123">
<br>
<table width="145" border="0" cellspacing="0" cellpadding="0" bordercolor="#F8AC0E" height="20">
<tr bgcolor="000099" valign="middle">
<td width="115" align="center" class="p2"><b><font color="#FFFFFF">CSS教程</font></b></td>
<td height="20" bgcolor="#E8E8E8" width="13"><img src="/pc/img/title_00.gif" width="13" height="20"></td>
<td height="20" bgcolor="#E8E8E8" width="17"> </td>
</tr>
</table>
<p class="p1" style="line-height:17pt" align="left"> <font color="#CC3399">→</font>
<a href="css0101.htm">CSS快速入门</a><br>
<font color="#CC3399">→</font> <a href="css0201.htm">怎样编写CSS</a><br>
<font color="#CC3399">→</font> <a href="css0301.htm">CSS属性</a><br>
<font color="#CC3399">→</font> <a href="css0401.htm">CSS定位</a><br>
<font color="#CC3399">→</font> CSS滤镜<br>
1.<a href="css0501.htm">概述</a><br>
2.<a href="css0502.htm">Alpha属性</a><br>
3.Blur属性<br>
4.<a href="css0505.htm">Chroma属性</a><br>
5.<a href="css0506.htm">Dropshadow属性</a><br>
6.<a href="css0507.htm">Fliph、Fliv属性</a><br>
7.<a href="css0508.htm">Gray属性</a><br>
8.<a href="css0309.htm">Glow属性</a><br>
9.<a href="css0510.htm">Invert属性</a><br>
<br>
<br>
</p>
<p align="center" class=p1><a href=/pc/bin/msg.pl?file_id=k_css target="_blank"><img src="/pc/img/message.gif" width="64" height="54" alt="请您留言" border="0"><br> 谈谈您的看法</a>
<br>
<script language="javascript">
speak_num="za"
</script>
<script language="javascript" src=/pc/var/pc_k_css.js>
</script>
<script language="javascript">
var num=0
if (!isNaN(speak_num)){
num=speak_num;
}
else{
num=0
}
document.writeln ("已有")
document.writeln (num)
document.writeln ("条发言")
</script>
</p>
<p class="p1" style="line-height:17pt" align="left"> </p>
</td>
<td width=1 bgcolor=#0586D7 height="123"><img src="/pc/img/blank.gif" width="1" height="1">
</td><td width=15 background="/pc/img/line.gif"><p> </p></td>
<td valign="top" background="/pc/img/line.gif" width="584" height="123" class="p2">
<p align="center"><b><span class="p3"><br>
<font color="#3366CC">五、CSS滤镜</font></span></b></p>
<p align="right" class="p1"> </p>
<hr color=blue size=1>
<p class="p2" style="line-height:17pt"> <font color="336633"><b>3、blur属性</b></font></p>
<p class="p2" style="line-height:17pt"> 假如您用手在一幅还没干透的油画上迅速划过,画面就会变得模糊。CSS下的blur属性就会达到这种模糊的效果。
<br>
先来看一下blur属性的表达式: </p>
<p class="p2" style="line-height:17pt"> <font color="006666">filter:blur(add=add,direction,strength=strength)</font>
</p>
<p class="p2" style="line-height:17pt"> 我们看到blur属性有三个参数:add、direction、strength。
<br>
Add参数有两个参数值:true和false。意思是指定图片是否被改变成模糊效果。 Direction参数用来设置模糊的方向。模糊效果是按照顺时针方向进行的。其中0度代表垂直向上,每45度一个单位,默认值是向左的270度。角度方向的对应关系见下表:</p>
<p align="center"><img src="img/css067.gif" width="216" height="196" border="0" alt="角度列表">
</p>
<p class="p2" style="line-height:17pt"> Strength参数值只能使用整数来指定,它代表有多少像素的宽度将受到模糊影响。默认值是5像素。<br>
还是看一个例子吧。<em class="p3"><a href="sl/reblur.htm" target="_blank">点击这里看效果</a></em>
</p>
<p class="p2" style="line-height:17pt"> 看起来是不是有些像万花筒,在这个例子中加入了一些JavaScript的语句,代码如下:</p>
<p class="p2" style="line-height:17pt"> <font color="006666"><html>
<br>
<head> <br>
<title>blur css</title> <br>
<script> <br>
function handlechange(obj) <br>
</font> <font color="CC33CC">//*设置一个循环函数handlechange,对象是obj*//</font>
<br>
<font color="006666">{ with(obj.filters(0))</font><font color="CC33CC">//*Obj的filter属性*//</font>
<br>
<font color="006666">{ if (strength<255)</font><font color="CC33CC">//*设置循环条件*//</font>
<br>
<font color="006666">{ strength +=1;direction +=45;}</font><br>
<font color="CC33CC">//*每循环一次strength就加1,direction加45度*//</font>
<br>
<font color="006666">} <br>
} <br>
</script> <br>
</head> <br>
<body> <br>
<p><img id =“img1” src=“ss01087.jpg” <br>
style=“filter:blur(strength=1)”<br>
onfilterchange=“handlechange(this)”></font> <br>
<font color="CC33CC">//*导入一幅图片,初始blur属性strength等于1,同时调用onfilterchange函<br> 数*//</font>
<br>
<font color="006666"></p> <br>
</body> <br>
</html> </font></p>
<p class="p2" style="line-height:17pt"><font color="006666"> </font>注:在javascript中blur属性是这样定义的:<font color="006666">
<br>
[oBlurfilter=] object.Filters.blur</font></p>
<p class="p2" style="line-height:17pt"><font color="006666"> </font> 这个例子是Blur属性的一个比较复杂的例子,下一节我将向您介绍两个较简单的blur属性效果。</p>
<hr color=blue size=1>
<p class="p1" align="right"><a href="css0502.htm">上一节</a> <a href="css0504.htm">下一节</a> </p>
<p> </p>
<p align="center" class=p2><a href=/pc/bin/msg.pl?file_id=k_css target="_blank"><img src="/pc/img/message.gif" width="64" height="54" alt="请您留言" border="0"><br> 谈谈您的看法</a>
<script language="javascript">
speak_num="za"
</script>
<script language="javascript" src=/pc/var/pc_k_css.js>
</script>
<script language="javascript">
var num=0
if (!isNaN(speak_num)){
num=speak_num;
}
else{
num=0
}
document.writeln ("已有")
document.writeln (num)
document.writeln ("条发言")
</script>
</p>
<p> </p></td><td width=15 background="/pc/img/line.gif"><p> </p></td>
</tr>
</table>
<!--底部开始-->
<script language="Javascript" src="/pub/js/foot.js"></script>
<!--底部结束-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -