最基本的几种CSS文字滤镜效果
程序员文章站
2024-03-01 18:36:52
闲来无事,整理一些css文字效果,给初学者。下面做个例子吧,这都是最基本滤镜的应用,其实两种或几种不同滤镜的组合会获得意想不到的效果,遇到问题自己多动手试试就ok了,当然要...
闲来无事,整理一些css文字效果,给初学者。下面做个例子吧,这都是最基本滤镜的应用,其实两种或几种不同滤镜的组合会获得意想不到的效果,遇到问题自己多动手试试就ok了,当然要特别注意颜色的搭配,有时候用色不好是看不出效果的,配合背景图片的应用也会有很好的效果的。因为太懒,所以没有写注释也没有写什么语法格式,自己看看吧! 嘿嘿。(看不明白别骂我呀)
1、效果图:
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光
|
一路阳光
|
sunny |
sunny |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
一路阳光 |
2、源代码
<table border=1 style="border-style: solid; border-width: 1;font-size=12px" width="520"> <tr> <td width="510"> <span style="font-size:30pt;display:block; text-align:center;color:blue; filter:glow(color=red,strength=10);height:1">一路阳光 </span></td> </tr> <tr> <td width="510"> <span style="font-size:30pt;display:block; text-align:center;color:darkblue; filter:blur(add=t,direction=135,strength=10);height:1">一路阳光</span></td> </tr> <tr> <td width="510"> <div style="color:red;font-size:25pt;height:1;display:block; filter:progid:dximagetransform.microsoft.motionblur(strength=30,add=1,direction=135)"> <p align="center"> 一路阳光</div></td> </tr> <tr> <td width="510"> <div style="height:1;width:100%; font-family:impact;font-size:30pt;color:navy;display:block; filter:progid:dximagetransform.microsoft.wave(strength=3)"> <p align="center"> 一路阳光</div></td> </tr> <tr> <td width="510"> <div style="height:1;width:100%; font-family:impact;font-size:30pt;color:navy;display:block; filter:progid:dximagetransform.microsoft.wave(strength=3,freq=5)"> <p align="center"> 一路阳光</div></td> </tr> <tr> <td width="510"> <span style="font-size:30pt;display:block; text-align:center;color:darkblue; filter:wave(add=t,freq=5,lightstrength=5,phase=0,strength=5); height:1">一路阳光</span></td> </tr> <tr> <td width="510"> <span style="font-size:30pt;display:block; text-align:center;color:darkblue; filter:shadow(color=blue);height:1">一路阳光</span></td> </tr> <tr> <td width="510"> <div align="center" style="height:1;font-size:30pt; filter:dropshadow(color=maroon,positive=1);">一路阳光</div></td> </tr> <tr> <td width="510"> <div align="center" style="height:1;font-size:30pt; filter:dropshadow(color=maroon,positive=0);">一路阳光</div></td> </tr> <tr> <td width="510"> <div style="filter:progid:dximagetransform.microsoft.engrave(bias=0.5); height:1;font-size:20pt;font-family:impact;background-color:blue"> <p align="center">sunny</div></td> </tr> <tr> <td width="510"> <div style="filter:progid:dximagetransform.microsoft.emboss(bias=0.5); height:1;font-family:impact;font-size:20pt;background-color:blue"> <p align="center">sunny</div></td> </tr> <tr> <td style="filter: mask(color=#e1e4ec)shadow(color=#8c96b5,direction=135)chroma(color=#e1e4ec)" align="center"><font color="blue" size="6"><b>一路阳光</b></font></td> </tr> <tr> <td style="filter: alpha(opacity=100,finishiopacity=0,style=1)shadow(color=blue,direction=135)" align="center"><font color="blue" size="6"><b>一路阳光</b></font></td> </tr> <tr> <td style="filter: mask(color=#e1e4ec)dropshadow(color=#b4bbcf,offx=-3,offy=-3,positive=1)chroma(color=#e1e4ec)" align="center"><font color="blue" size="6"><b>一路阳光</b></font></td> </tr> <tr> <td style="filter: glow(color=#8c96b5,strength=2)shadow(color=#b4bbcf,direction=135)" align="center"><font color=#e1e4ec size=6><b>一路阳光</b></font></td> </tr> <tr> <td style="filter: mask(color=#e1e4ec)shadow(color=#b4bbcf,direction=135)chroma(color=#e1e4ec)" align="center"><font color=#8c96b5 size=6><b>一路阳光</b></font></td> </tr> <tr> <td style="filter: glow(strength=1)mask(color=#b4bbcf)chroma(color=#b4bbcf)" align="center" height=54><font color=#8c96b5 size=6><b>一路阳光</b></font></td> </tr> <tr> <td><span style="position:absolute;font-size:30pt;color=blue;filter:fliph">一路阳光</span></td> </tr> <tr> <td><span style="position:absolute;left:200;font-size:30pt;color=blue;filter:flipv">一路阳光</span></td> </tr> </table> <table align=center background="http://www.idc2008.com/468x60-8.gif" border=0> <tr> <td style="filter: glow(strength=4)mask(color=#e1e4ec)"><font size="7"> <b>一路阳光</b></font></td> </tr> </table> |