CSS的常用濾鏡(filter)屬性及語句大全–摘自http://www.8tops.com/113_skill_8267CEB6473B4AF1ABF669340E3AD2EF.htm

來源:互聯網
上載者:User

概述

CSS濾鏡雖然只能在IE瀏覽器中表現出效果,但是仍不失為網頁增加特效的好辦法。

1.CSS靜態濾鏡樣式 (filter)

CSS靜態濾鏡樣式的使用方法:{ filter : filtername( parameters1, parameters2, ...) }

Filter樣式 簡要說明 支援參數
alpha 設定圖片或文字的不透明度 opacity、finishOpacity、style、startX、startY、finishX、finishY、add、direction、strength
blur 在指定的方向和位置上產生動感模糊效果 add、direction、strength
chroma 對所選擇的顏色進行透明處理 color
dropShadow 在指定的方向和位置上產生陰影 color、offX、offY、positive
flipH 沿水平方向翻轉對象  
flipV 沿垂直方向翻轉對象  
glow 在對象周圍上發光 color、strength
gray 將對象以灰階處理  
invert 逆轉對象顏色  
light 對對象進行類比光照  
mask 對對象產生掩膜 color
shadow 沿對象邊緣產生陰影 color、direction
wave 在垂直方向產生正弦波形 add、freq、lightStrength、phase、strength
xray 改變對象色彩深度,並繪製黑白圖象

以上就是靜態濾鏡的全部內容,要注意的是CSS是區分大小寫!

2.CSS動態濾鏡

動態濾鏡可以為頁面添加動人的淡入淡出、圖象轉化效果,它可以分為兩種blend(混合)和reveal(顯示),前者可以使對象漸漸消失或出現,後者 提供了24種圖象轉化的效果。對於動態濾鏡的調用除去象在靜態濾鏡中要定義的濾鏡類型,參數等等,還用到指令碼語言控制它的狀態。

首先,在開始一個動態效果之前,先需要進行裝備(Apply),然後播放(Play)動態效果,在動態效果進行中還可以中斷動態效果(Stop),以上可以用下面的方法實現:

對象名.filters(濾鏡數值).Apply()
對象名.filters(濾鏡數值).Play()
對象名.filters(濾鏡數值).Stop()

對於濾鏡狀態的判斷可以通過“對象名.filters(濾鏡數值).status”判斷,該值為0時,表示濾鏡未執行,為1時,表示濾鏡已經完成,為2時表示濾鏡在執行中。在定義filter時,如上面所提到的,可以有混合(“filter:blendTrans(duration=時間數值)”,duration表示濾 鏡執行需要的時間,單位為秒)和顯示(“filter:revealTrans(duration=時間數值,transition=過渡類型)”,過渡 類型為從0-23的數值)兩種。

濾鏡目前還未被W3C正式承認。濾鏡只是微軟IE瀏覽器的組成部分,不能用於Netscape瀏覽器。制定有關標準的組織正在就此進行討論,但尚未達成最後定論。在我看來,濾鏡是一種非常有趣而且是製作精彩的視覺效果必不可少的一部分。濾鏡能節省帶 寬,而且是你能在製作奇妙的視覺設計時使用文字格式,而不必先製作龐大的文字位元影像以取得相同的效果。但由於這些功能尚未成為HTML的正式組成部分,所以並不是所有的瀏覽器都能看到這些特色。有些時候,你必須考慮以傳統的方式製作相同的效果,當然,你不得不繼續將龐大的GIF檔案塞到網頁之中。 

執行個體講解

現在非常多的朋友搞個人網頁,而且做的五彩繽紛,各有特色,但是比較多的朋友把大大的一幅圖象放在頁面上,致使頁面下載很慢,加上用GIF格式做動畫,儘管用GIF格式搞的動畫比較苗條,但是也不大合算。能否不用特別做的圖象,不用GIF格式做動畫,可以把頁面搞的生氣活現呢?可以,但JAVASCRIPT比較對一般初學者來說是比較難的,筆者今天要用IE本身內含的STYLE這個重量級的命令屬性中的RevealTrans和濾鏡來搞搞新意思!希望網友們能靈活運用這些濾鏡和頁面轉場效果,把自己的首頁搞的有聲有色!不斷進步!

Style屬性可以應用在標籤中,更可用廣泛應用在<table><tr><td><body><center><img><input><font><form><frame><label><map>等等標籤中,更重要的是,它可用在標籤中。

頁面轉場效果:

在頁面前部與之間加入""
說明:duration為頁面切換的時間長度,3.000表示3秒鐘,一般可以直接輸入3便可;transition為轉場效果,從1-23共22種不同的轉場效果,其中23為隨機效果。

濾鏡效果:

Photoshop的濾鏡用的多了吧,在頁面中也用濾鏡搞搞新意思吧!

文法: filter:filtername(fparameter1,fparameter2...)
(Filtername為濾鏡的名稱,fparameter1、fparameter2等是濾鏡的參數)

濾鏡說明:
Alpha:設定透明層次.
blur:建立高速度移動效果,即模糊效果.
Chroma:製作專用顏色透明.
DropShadow:建立對象的固定影子.
FlipH:建立水平鏡像圖片.
FlipV:建立垂直鏡像圖片.
glow:加光輝在附近對象的邊外.
gray:把圖片灰階化.
invert:反色.
light:建立光源在對象上.
mask:建立透明掩膜在對象上.
shadow:建立位移固定影子.
wave:波紋效果.
Xray:使對象變的像被x光照射一樣.

1、濾鏡:Alpha
語 法:filter:Alpha(Opacity=opacity,FinishOpacity=finishopacity,Sty le=style,StartX=startX,StartY=startY,FinishX=finishX,FinishY=finishY)
說明:
Opacity:起始值,取值為0~100, 0為透明,100為原圖。
FinishOpacity:目標值。
Style:1或2或3
StartX:任意值
StartY:任意值
例子:filter:Alpha(Opacity="0",FinishOpacity="75",2)
2、濾鏡:blur
文法:filter:Blur(Add = add, Direction = direction, Strength = strength)
說明:
Add:一般為1,或0。
Direction:角度,0~315度,步長為45度。
Strength:效果增長的數值,一般5即可。
例子:filter:Blur(Add="1",Direction="45",Strength="5")
3、濾鏡:Chroma
文法:filter:Chroma(Color = color)
說明:color:#rrggbb格式,任意。
例子:filter:Chroma(Color="#FFFFFF")
4、濾鏡:DropShadow
文法:filter:DropShadow(Color=color, OffX=offX, OffY=offY, Positive=positive)
說明:Color:#rrggbb格式,任意。
Offx:X軸偏離值。
Offy:Y軸偏離值。
Positive:1或0。
例子:filter:DropShadow(Color="#6699CC",OffX="5",OffY="5",Positive="1")
5、濾鏡:FlipH
文法:filter:FlipH
例子:filter:FlipH
6、濾鏡:FlipV
文法:filter:FlipV
例子:filter:FlipV
7、濾鏡:glow
文法:filter:Glow(Color=color, Strength=strength)
說明:
Color:發光顏色。
Strength:強度(0-100)
例子:filter:Glow(Color="#6699CC",Strength="5")
8、濾鏡:gray
文法:filter:Gray
例子:filter:Gray
9、濾鏡:invert
文法:filter:Invert
例子:filter:Invert
10、濾鏡:mask
文法:filter:Mask(Color=color)
例子:filter:Mask (Color="#FFFFE0")
11、濾鏡:shadow
文法:filter:Shadow(Color=color, Direction=direction)
說明:
Color:#rrggbb格式。
Direction:角度,0-315度,步長為45度。
例子:filter:Shadow (Color="#6699CC", Direction="135")
12、濾鏡:wave
文法:filter: Wave(Add=add,Freq=freq,LightStrength=strength,Phase=phase, Strength=strength)
說明:
Add:一般為1,或0。
Freq:變形值。
LightStrength:變形百分比。
Phase:角度變形百分比。
Strength:變形強度。
例子:filter: wave(Add="0", Phase="4", Freq="5", LightStrength="5", Strength="2")
13、濾鏡:Xray
文法:filter:Xray
例子:filter:Xray;
14.顏色變化
文法:filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#B5CCFA", EndColorStr="#B5CCFA");

 

最基本的幾種 CSS 文字濾鏡效果

 

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>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.