最基本的几种CSS文字滤镜效果

闲来无事,整理一些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>

(0)

相关推荐

  • 最基本的几种CSS文字滤镜效果

    闲来无事,整理一些CSS文字效果,给初学者.下面做个例子吧,这都是最基本滤镜的应用,其实两种或几种不同滤镜的组合会获得意想不到的效果,遇到问题自己多动手试试就OK了,当然要特别注意颜色的搭配,有时候用色不好是看不出效果的,配合背景图片的应用也会有很好的效果的.因为太懒,所以没有写注释也没有写什么语法格式,自己看看吧! 嘿嘿.(看不明白别骂我呀) 1.效果图: 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 SUNNY SUNNY 一路阳光 一路阳光 一路

  • 最基本的几种 CSS 文字滤镜效果

    下面做个例子吧,这都是最基本滤镜的应用,其实两种或几种不同滤镜的组合会获得意想不到的效果,遇到问题自己多动手试试就OK了,当然要特别注意颜色的搭配,有时候用色不好是看不出效果的,配合背景图片的应用也会有很好的效果的. 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 SUNNY SUNNY 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 一路阳光 [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

  • 实现css文字垂直居中的8种方法

    注:以下demo都只是针对现代浏览器所做,未兼容低版本的IE以及其他非主流浏览器. 实现css文字垂直居中的8种方法如下: 1.使用绝对定位和负外边距对块级元素进行垂直居中 css垂直居中效果: css垂直居中实现代码: 这个方法兼容性不错,但是有一个小缺点:必须提前知道被居中块级元素的尺寸,否则无法准确实现垂直居中. 2.使用绝对定位和transform 代码如下: 这种方法非常明显的好处就是不必提前知道被居中的元素的尺寸,因为transform中偏移的百分比就是相对于元素自身的尺寸而言. 3

  • CSS文字截取功能实现代码

    好处是: 兼容IE,firefox,Opera; 有利于内容完整性;有利于SEO; 无需后台程序处理; 可以在前台随时调节要截取的长度. 不好的地方: 不能自动判断截取长度,当字符很短的时候在Firefox中也会生成后面的省略符号. 另外在设置截取宽度的时候,要注意,尽量让文字截取完整. Quote: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/

  • vue中(el-button的五种类型,三种css格式)

    目录 vue(el-button五种类型,三种css格式) vue中的样式 实例一 实例二 实例三 vue(el-button五种类型,三种css格式) 在写一个系统的css文件的时候,发现了不同类型的button的初始颜色不同,为了完美的使button的颜色和背景的颜色相映照,就去搜了一下,小做总结,为以后的使用做准备. <div> <el-button><span>默认按钮</span></el-button> <el-button t

  • Js+CSS 文字渐隐渐现显示

    这段代码实现的淡入淡出还算可以吧,比较平滑,同样出自JavaScript+CSS两者的配合. JavaScript文字渐隐渐现显示 0) && (parseInt(navigator.appVersion) >= 4)); var count = 0, count2 = 0, add1 = 3, add2 = 10, timerID; function show() { if (ie4) { count += add1; count2 += add2; delay = 30; if(

  • 实用CSS 文字收集

    text-transform:uppercase //把文字变成全大写 text-transform:lowercase //把文字变成全小写 text-transform:capitalize //把文字变成首字母大写 text-indent:-9999em //图片添加文字说明但不显示在页面增强SEO

  • JS、CSS文字切换,定时交替,代码精简

    你可以把它看作像写一般的CSS列表一样,只用增加两三行代码就能完成切换效果. 文本定时变动代码 #newslist{ background:#f8f8f8;border:1px solid silver;padding:1px;height:20px;line-height:20px;width:288px; } #contain{ font-size:12px;overflow:hidden;list-style:none;width:288px;height:20px;margin:0px;

  • 完美实现CSS垂直居中的11种方法

    本人前端小白,正在做一个小程序开发的项目,css样式调整搞的头都大了.关于垂直居中,已尝试了文中的几个垂直居中css样式设置,已成功解决我的问题,故转载来备份下. CSS垂直居中11种实现方法分别如下: 1. 使用绝对定位和负外边距对块级元素进行垂直居中 html代码: <div id="box"> <div id="child">我是测试DIV</div> </div></pre> css代码: #box

  • Dreamweaver超级技巧之文字特效

    应用目标:制作文字特效 应用软件:Dreamweaver MX操作难度:★★☆☆☆我们常用的网页制作工具Dreamweaver MX不仅可以制作网页,而且利用其中的CSS滤镜我们还可以对文字或图片进行简单的特效处理.下面我们就通过几个例子来看一看在Dreamweaver中是如何制作特效文字的.光晕字首先启动Dreamweaver,在新文档中插入一个1×1的表格,边框设置为0,然后在其中输入需要修饰的文字.单击右面的浮动面板中的"设计→CSS样式"打开这一浮动面板.面板右下角的四个按钮分

随机推荐