成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

DIV樣式中一些特殊效果用法舉例

開發(fā) 前端
本文向大家介紹一下DIV樣式中一些特殊效果,主要包括cursor,clip和filter三部分內(nèi)容,另外介紹了一下濾鏡綜合的例子,希望對你有所幫助。

上節(jié)我們介紹了DIV樣式中的常用屬性,那么你對DIV樣式的特殊效果是否了解,這里和大家簡單分享一下,相信本文介紹一定會讓你有所收獲。

DIV樣式中一些特殊效果:

1、cursor:設(shè)置DIV上光標的樣式。

2、clip:設(shè)置剪輯矩形。

例:

Code
 

  1. <divstyledivstyle="font:16px宋體;width:600px;height:200px;cursor:help;  
  2. clip:rect(0px100px20px0px);line-height:20px;overflow:auto;background-color:Yellow;position:absolute"> 
  3. div樣式測式howareyou.  
  4. </div> 

 說明:clip:rect(toprightbottomleft);設(shè)置上下左右的距離,但此時要把position指定為absolute。看以上效果。

3、DIV樣式特殊效果之filter:濾鏡效果。

例:

Code
 

  1. <divstyledivstyle="width:450px;height:200px;background-color:Blue;"> 
  2. <dividdivid=”tdiv”style="background-color:Yellow;filter:alpha(opacity=50);opacity:0.5;  
  3. float:left;width:200px;height:200px;"> 
  4. </div> 
  5. <divstyledivstyle="background-color:Yellow;width:200px;height:200px;float:left;"> 
  6. </div> 
  7. </div> 

 說明:設(shè)置透明度:opacity:value(FF專用,value的取值為0至1之間的小數(shù)),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)';#p#

◆以下是濾鏡綜合的例子,將以下代碼復(fù)制到一個網(wǎng)頁文件中就可看到其效果,所以就不要加以說明了。

例:

濾鏡綜合例子

  1. <styletypestyletype="text/css"> 
  2. #paneldivdiv  
  3. {}{  
  4. background-Color:yellow;  
  5. height:200px;  
  6. width:200px;  
  7. }  
  8. </style> 
  9.  
  10. <dividdivid="paneldiv"style="width:230px;height:2300px;  
  11. background-color:Blue;"> 
  12. <divstyledivstyle="filter:alpha(opacity=0,finishopacity=80,style=1,  
  13. startx=10,starty=10,FinishX=100,FinishY=100);opacity:0.5;"> 
  14.  

◆DIV樣式特殊效果之a(chǎn)lpha效果

  1. :<br/> 
  2. </div> 
  3.  
  4. <divstyledivstyle="filter:blur(add=1,direction=100,strength=5);"> 
  5.  

◆DIV樣式特殊效果之blur效果

  1. <br/> 
  2. add為1代表字有陰影,0代表字全部模糊。  
  3. abcdefghijklmnopqrstuvwxyz  
  4. </div> 
  5. <divstyledivstyle="filter:chroma(color='#ff0000')  
  6. "onclick="this.style.backgroundColor='#ff0000' 
  7. "ondblclick="this.style.backgroundColor='black';"> 

◆DIV樣式特殊效果之chroma效果

  1. <br/> 
  2. 原為黃色,單擊變成紅色變成透明,雙擊變成黑色。  
  3. </div> 
  4. <divstyledivstyle="filter:FlipH;"> 

◆DIV樣式特殊效果之fliph效果

  1. <br/> 
  2. ABCDEFGH<br/> 
  3. IJKLMNOP<br/> 
  4. 此屬性在設(shè)置寬高后有效  
  5. </div> 
  6. <divstyledivstyle="filter:FlipV;"> 

◆DIV樣式特殊效果之flipv效果

  1. <br/> 
  2. ABCDEFGH<br/> 
  3. IJKLMNOP<br/> 
  4. 此屬性在設(shè)置寬高后有效  
  5. </div> 
  6. <divstyledivstyle="filter:gray;"> 

#p#◆DIV樣式特殊效果之gray效果

  1. <br/> 
  2. abcdefghijklmn  
  3. </div> 
  4. <divstyledivstyle="filter:invert;text-transform:uppercase;color:Red;"> 

◆DIV樣式特殊效果之invert效果

  1. <br/> 
  2. 背景色變成相反顏色,如黑變成白。  
  3. </div> 
  4. <divstyledivstyle="filter:wave(add=0,freq=3,lightstrength=20,phase=3,strength=10)"> 

◆DIV樣式特殊效果之wave效果

  1. <br/> 
  2. Add:一般為1,或0。(0表示上下波浪)  
  3.   Freq:變形值。(指定多少個波浪)  
  4.   LightStrength:變形百分比。(變形后的陰影。)  
  5.   Phase:角度變形百分比。(彎曲的角度)Strength:變形強度。(數(shù)值越大,DIV變形就越大。)  
  6. </div> 
  7. <divstyledivstyle="filter:Xray"> 

◆DIV樣式特殊效果之xray效果

  1. <br/> 
  2. sfasdfasdfasdfsadf  
  3. </div> 
  4. <divstyledivstyle="filter:progid:DXImageTransform.Microsoft.Gradient  
  5. (GradientType=0,StartColorStr='#B5CCFA',EndColorStr='#ffffff');"> 
  6. progid:dximagetransform.microsoft.gradient效果:<br/> 
  7. endendendendendendendendendend  
  8. </div> 
  9. </div> 
  10. <divstyledivstyle="filter:DropShadow(color='#666666',OffX='3',OffY='3',  
  11. Positive='1');width:200px;height:200px;"> 

◆DIV樣式特殊效果之dropshadow效果

  1. <br/> 
  2. 此效果只有在不設(shè)置背景色時有效,這時Color指定的將成為背景色。  
  3.  
  4. 此時背上的字將是清晰的。positive為0時color將成為背景色,為1時color只是文本投影的顏色。  
  5. </div> 
  6. <divstyledivstyle="filter:Glow(color='#0000ff',strength='3');  
  7. width:100px;height:100px;"> 
  8.  

#p#◆DIV樣式特殊效果之glow效果

  1. <br/> 
  2. strength的光的強度0--100;此時不能設(shè)DIV的背景色。  
  3. </div> 
  4. <divstyledivstyle="filter:mask(color='ff0000');width:100px;  
  5. height:100px;text-transform:uppercase;color:black;"> 

◆DIV樣式特殊效果之mask效果

  1. <br/> 
  2. 沒有明顯效果,不能設(shè)背景色。  
  3. </div> 
  4. <divstyledivstyle="filter:shadow(color='0000ff',direction='100');  
  5. width:100px;height:100px;"> 

◆DIV樣式特殊效果之shadow效果

  1. <br/> 
  2. abcdefghijklmn  
  3. </div> 
  4. <divstyledivstyle="filter:Xray;width:100px;height:100px;  
  5. background-color:red;"> 

◆DIV樣式特殊效果之xray效果

  1. <br/> 
  2. sfasdfasdfasdfsadf  
  3. </div> 
  4. <divstyledivstyle="filter:progid:DXImageTransform.Microsoft.Gradient  
  5. (GradientType=100,StartColorStr='#B5CCFA',EndColorStr='#ffffff');width:100px;height:100px;"> 
  6. 漸變效果。  
  7. endendendendendendendendendend  
  8. </div> 
  9. <divstyledivstyle="filter:progid:dXImageTransform.Microsoft.Pixelate(maxsquare=5);width:100px;height:100px;"> 
  10. lsksalsslalalalalalalal  
  11. </div> 
  12. <divstyledivstyle="filter:alpha(opacity=100,finishOpacity=0,style=2);  
  13. width:100px;height:100px;background-color:Yellow;"> 
  14. </div> 

此上濾鏡效果主要參考:

http://www.lao8.org/html/8/2008-1-21/2008121182204.html

http://ce.sysu.edu.cn/hope/Education/ShowArticle.asp?ArticleID=2117;

【編輯推薦】

  1. DIV樣式中常用屬性用法指導(dǎo)
  2. 使用Div CSS構(gòu)架的三大好處
  3. 解析DIV布局之四大屬性用法
  4. Div+CSS布局入門之寫入整體層結(jié)構(gòu)與CSS
  5. DIV+CSS開發(fā)過程中影響SEO的制作細節(jié)

 

責任編輯:佚名 來源: cnblogs.com
相關(guān)推薦

2010-09-10 09:57:27

DIV樣式

2010-08-24 14:10:44

div style

2009-12-29 14:26:04

WPF按鈕

2015-07-08 16:19:17

iOSUIVisualEff

2009-12-25 14:25:39

WPF圖標

2011-07-19 13:49:19

Objective-C 數(shù)據(jù)類型

2011-07-19 18:11:09

iPhone 開發(fā)

2017-05-23 14:33:46

簡歷求職前端開發(fā)

2022-05-24 12:50:58

Pandas索引代碼

2013-03-29 09:03:59

iOS實用小代碼iOS開發(fā)

2009-09-21 17:46:25

Hibernate數(shù)據(jù)

2012-12-24 14:51:02

iOS

2019-10-15 06:00:26

Google AnalAngularReact

2011-06-16 14:28:08

Qt Symbian 文件

2011-03-16 10:40:42

JavaEEJ2EE

2023-11-13 07:54:54

.NET Core開源框架

2014-08-08 09:14:43

Linux瀏覽器

2014-03-19 15:41:21

編程語言編程規(guī)則

2018-09-11 16:15:36

Vue高版本前端

2011-06-24 14:46:23

Qt
點贊
收藏

51CTO技術(shù)棧公眾號

主站蜘蛛池模板: 欧美精品一区二区三区视频 | 日韩美香港a一级毛片免费 国产综合av | 欧美一级二级视频 | 日韩一区二区在线观看视频 | 国产精品入口久久 | av手机免费在线观看 | 免费观看一级特黄欧美大片 | 国产99在线 | 欧美 | 日本精品视频在线 | 精品一区二区三区在线观看 | 麻豆成人在线视频 | 日韩成人免费中文字幕 | 精品国产91久久久久久 | 亚洲电影一区二区三区 | 国产高清视频在线观看播放 | 日本网站在线看 | 国产精品色哟哟网站 | 成人午夜在线观看 | 亚洲综合三区 | 国产精品一区二区在线 | 日日操日日舔 | 国产亚洲精品久久yy50 | 欧美一级特黄aaa大片在线观看 | 精品欧美乱码久久久久久1区2区 | 午夜影视免费片在线观看 | 紧缚调教一区二区三区视频 | 天天射天天干 | 欧美日韩综合 | 国产精品久久久久久婷婷天堂 | 国产真实精品久久二三区 | 九色av| 成人欧美一区二区三区在线播放 | 久久精品国产一区二区电影 | 日韩欧美手机在线 | 放个毛片看看 | 一区二区三区四区在线视频 | 91av视频| 国产精品久久久久久模特 | 久久久久久久久91 | 精精国产xxxx视频在线播放 | 日韩精品久久久 |