赞
踩
二、一些特殊效果:
1、cursor: 设置DIV 上光标的样式。
2、clip: 设置剪辑矩形。
例:
说明:clip:rect(top right bottom left); 设置上下左右的距离, 但此时要把position 指定为absolute 。看以上效果。
3、filter: 滤镜效果。
例:
说明:设置透明度:opacity :value (FF 专用,value 的取值为0 至1 之间的小数) ,filter:alpha(opacity=value)(IE 专用,value 取值:0 至100) 。
如果要有JavaScript 改变DIV 的透明度可用下面的方法:
FF 中:document.getElementById('tdiv').style.opacity='0.9';
IE 中:document.getElementById('tdiv').style.filter='alpha(opacity=90)';
* 以下是滤镜综合的例子,将以下代码复制到一个网页文件中就可看到其效果,所以就不要加以说明了。
例:
此上滤镜效果主要参考:
http://www.lao8.org/html/8/2008-1-21/2008121182204.html
http://ce.sysu.edu.cn/hope/Education/ShowArticle.asp?ArticleID=2117 ;
(转自: http://www.cnblogs.com/skylaugh/archive/2009/05/09/1453124.html)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。