WEB开发网
开发学院网页设计DivCss CSS滤镜:blur属性 阅读

CSS滤镜:blur属性

 2008-03-09 11:36:30 来源:WEB开发网   
核心提示:假如您用手在一幅还没干透的油画上迅速划过,画面就会变得模糊,CSS滤镜:blur属性,CSS下的blur属性就会达到这种模糊的效果, 先来看一下blur属性的表达式: filter:blur(add=add,初始blur属性strength等于1,同时调用onfilterchange函数*// </p>
假如您用手在一幅还没干透的油画上迅速划过,画面就会变得模糊。CSS下的blur属性就会达到这种模糊的效果。
  先来看一下blur属性的表达式:

  filter:blur(add=add,direction,strength=strength)

  我们看到blur属性有三个参数:add、direction、strength。
  Add参数有两个参数值:true和false。意思是指定图片是否被改变成模糊效果。    Direction参数用来设置模糊的方向。模糊效果是按照顺时针方向进行的。其中0度代表垂直向上,每45度一个单位,默认值是向左的270度。角度方向的对应关系见下表:

 

  Strength参数值只能使用整数来指定,它代表有多少像素的宽度将受到模糊影响。默认值是5像素。
  还是看一个例子吧。

===================

<html>
  <head>
   <title>blur css</title>
   <script>
     function handlechange(obj)
     {
      with(obj.filters(0))
      {
       if (strength<255)
       {
       strength +=2;
       direction +=45;
       }
      }
     }
   </script>
 </head>

 <body>
   <p><img id ="img1" src="http://tech.cncms.com/tech/UploadPic/2010107/2010107204358312.jpg" style="filter:blur(strength=1)"
     onfilterchange="handlechange(this)">
   </p>
 </body>
</html>

=====================

看起来是不是有些像万花筒,在这个例子中加入了一些JavaScript的语句,代码如下:

  <html>
   <head>
   <title>blur css</title>
   <script>
   function handlechange(obj)
   //*设置一个循环函数handlechange,对象是obj*//
   { with(obj.filters(0))//*Obj的filter属性*//
    { if (strength<255)//*设置循环条件*//
     { strength +=1;direction +=45;}
    //*每循环一次strength就加1,direction加45度*//        
    }
   }
   </script>
   </head>
   <body>
   <p><img id =“img1” src="http://tech.cncms.com/tech/UploadPic/2010107/2010107204359772.jpg"”         
     style=“filter:blur(strength=1)”
     onfilterchange=“handlechange(this)”>
   //*导入一幅图片,初始blur属性strength等于1,同时调用onfilterchange函
   数*//
   </p>
    </body>
  </html>

  注:在javascript中blur属性是这样定义的:
    [oBlurfilter=] object.Filters.blur

  这个例子是Blur属性的一个比较复杂的例子,下一节我将向您介绍两个较简单的blur属性效果。

1 2  下一页

Tags:CSS 滤镜 blur

编辑录入:coldstar [复制链接] [打 印]
赞助商链接