css3新增屬性

摘自:牧雲流web

CCS3與用戶界面(UI)有關的僞類chrome

序號 選擇器 含義 實例
15 E:enabled 匹配表單中激活的元素  
16 E:disabled 匹配表單中禁用的元素 input[type="text"]:disabled { background:#ddd; }
17 E:checked 匹配表單中被選中的radio(單選框)或checkbox(複選框)元素  
18 E::selection 匹配用戶當前選中的元素  

 

 

 

 

 

一. box-shadow(陰影效果)瀏覽器

使用:

box-shadow: 20px 10px 0 #000;url

-moz-box-shadow: 20px 10px 0 #000;spa

-webkit-box-shadow: 20px 10px 0 #000;orm

支持: 

       FF3.5, Safari 4, Chrome 3圖片

 

二. border-colors(爲邊框設置多種顏色)ip

使用:

border: 10px solid #000; 
-moz-border-bottom-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc; 
-moz-border-top-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc; 
-moz-border-left-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc; 
-moz-border-right-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;ci

說明: 

       顏色值數量不固定, 且FF的私有寫法不支持縮寫: -moz-border-colors: #333 #444 #555;input

支持:
      FF3+
 
 

三. boder-image(圖片邊框)

使用:

       -moz-border-image: url(exam.png) 20 20 20 20 repeat;

       -webkit-border-image: url(exam.png) 20 20 20 20 repeat;

說明:

(1). 20 20 20 20 ---> 邊框的寬度, 分別對應top, right, bottom, left邊框, 改變寬度能夠實現不一樣的效果;

(2). 邊框圖片效果(目前僅實現了兩種): 

      repeat --- 邊框圖片會平鋪, 相似於背景重複;

      stretch --- 邊框圖片會以拉伸的方式來鋪滿整個邊框;

(3). 必須將元素的邊框厚度設置爲非0非auto值.

支持:

       FF 3.5, Safari 4, Chrome 3

 

四. text-shadow(文本陰影)

使用: 

       text-shadow: [<顏色><水平偏移><縱向偏移><模糊半徑>] || [<水平偏移><縱向偏移><模糊半徑><顏色>];

說明:

(1) <顏色>和<模糊半徑>是可選的, 當<顏色>未指定時, 將使用文本顏色; 當<模糊半徑>未指定時, 半徑值爲0;

(2) shadow能夠是逗號分隔的列表, 如:

     text-shadow: 2px 2px 2px #ccc, 3px 3px 3px #ddd;

(3) 陰影效果會按照shadow list中指定的順序應用到元素上;

(4) 這些陰影效果有可能相互重疊, 但不會疊加文本自己;

(5) 陰影可能會跑到容器的邊界以外, 但不會影響容器的大小.

支持:

       FF 3.5, Opera 10, Safari 4, Chrome 3

五.  text-overflow(文本截斷)

使用:

       text-overflow: inherit | ellipsis | clip ;

       -o-text-overflow: inherit | ellipsis | clip;

說明: 

(1) 還有一個屬性ellipsis-word, 但各瀏覽器均不支持.

支持: 

       IE6+, Safari4, Chrome3, Opera10

六. word-wrap(自動換行)

使用:

       word-wrap: normal | break-word;

支持:

       IE6+, FF 3.5, Safari 4, Chrome 3

七. border-radius(圓角邊框)

使用:

        -moz-border-radius: 5px;

-webkit-border-radius: 5px;

支持:

FF 3+, Safari 4 , Chrome 3

 
 

八.   opacity(不透明度)   

使用:

       opacity: 0.5;

       filter: alpha(opacity=50); /* for IE6, 7 */

       -ms-filter(opacity=50); /* for IE8 */

支持:
       all

九. box-sizing(控制盒模型的組成模式)

使用:

       box-sizing: content-box | border-box; // for opera

       -moz-box-sizing: content-box | border-box;

       -webkit-box-sizing: content-box | border-box;

說明:

      1. content-box: 

      使用此值時, 盒模型的組成模式是, 元素寬度 = content + padding + border;

      2. border-box: 

      使用此值時, 盒模型的組成模式是, 元素寬度 = content(即便設置了padding和border, 元素的寬度

      也不會變).

支持:

       FF3+, Opera 10, Safari 4, Chrome 3

 

十. resize(元素縮放)

使用: 

       resize:  none | both | horizontal | vertical;

說明:

       1. 必須將元素的overflow屬性設置爲auto或hidden, 該屬性才能起做用(overflow設置爲visible時, 無效);

       2. 屬性值說明:

       (1). none --> 禁用縮放;

       (2). both --> 可同時縮放寬度和高度;

       (3). horizontal --> 僅能縮放寬度;

       (4). vertical --> 僅能縮放高度;

支持:

       safari 4, chrome 3

十一. outline(外邊框)

使用:

       outline: 邊框厚度 邊框樣式 邊框顏色;

       outline-offset: 偏移值;

說明:

       outline-offset須要獨立寫, 簡寫是無效的.

支持:

       FF3+, safari 4, chrome 3, opera 10

十二. background-size(指定背景圖片的尺寸)

使用:

       -o-background-size: [length | percentage] {1, 2};

       -webkit-background-size: [length | percentage] {1, 2};

例如:

       -o-background-size: 50px 60px;

       -webkit-background-size: 50px 60px;

       這會將背景圖片的寬設置了50px, 高60px.

支持:

        safari 4, chrome 3, opera 10   

 
 

十三. background-origin(指定背景圖片從哪裏開始顯示) 

使用: 

       -webkit-background-origin: border | padding | content;

       -moz-background-origin: border | padding | content;  

說明:

       (1) border --> 從border區域開始顯示背景;

       (2) padding --> 從padding區域開始顯示背景;

       (3) content --> 從content區域開始顯示背景;

注意:

       1. 必須先指定background屬性, 而後才能指定該屬性, 若是該屬性出如今background屬性以前, 

會無效.
支持:

        safari 4, chrome 3, FF 3+           

十四. background-clip(指定背景圖片從什麼位置開始裁切)

使用: 

       -webkit-background-origin: border-box | padding-box | content-box | no-clip;

說明:

       (1) border-box --> 從border區域向外裁剪背景;

       (2) padding-box --> 從padding區域向外裁剪背景;

       (3) content-box --> 從content區域向外裁剪背景;

       (4) no-clip --> 不裁切背景.

注意:

       1. 必須先指定background屬性, 而後才能指定該屬性, 若是該屬性出如今background屬性以前, 

會無效.
支持:

        safari 4, chrome 3

十五.  background(爲一個元素指定多個背景)

使用: 

       background:  [background-image] | [background-origin] | [background-clip] | [background-repeat] | [background-size] | [background-position]

例子:

       background: url(bg1.png) no-repeat left top, url(bg2.png) no-repeat right bottom;

支持:

        safari 4, chrome 3

十六. hsl(經過色調, 飽和度, 亮度來指定顏色值)

使用:

       hsl: ( <length> || <percentage> || <percentage>);

說明:

       (1) length: h(色調),  0(或360)表示紅色, 120表示綠色, 240表示藍色;

       (2) percentage: s(飽和度),  取值爲0%到100%之間的值;

       (3) percentage: l(亮度),  取值爲0%到100%之間的值;

例子:

       background: hsl(240, 50%, 100%);

       color: hsl(100, 80, 100%);

支持:

        safari 4, chrome 3, FF3, opera 10

十七. hsla(在hsl的基礎上上增長了一個透明度設置)

使用:

       hsla: ( <length>  ||  <percentage>  ||  <percentage> || <opacity>);

說明:

       (1) opacity: a(透明度), 取值在0到1之間;

例子:

       background: hsl(240, 50%, 100%, 0.5);

       color: hsl(240, 50%, 100%, 0.5);

支持:

        safari 4, chrome 3, FF3, opera 10

十八. rgba(基於r,g,b三個顏色通道來設置顏色值, 經過a來設置透明度)

使用:

       rgba: (r, g, b, opacity);

說明:

       (1) r: 紅色, 正整數 | 百分數;

       (2) g: 綠色, 正整數 | 百分數;

       (3) b: 藍色, 正整數 | 百分數;

       (4) a: 透明度, 取值在0到1之間;

       (5) 正整數在0到255之間, 百分數在0%到100%之間.

例子:

       rgba: (100%, 244, 0, 0.5);

支持:

        safari 4, chrome 3, FF3, opera 10

十9、 transition(a標籤hover漸隱效果) a:hover{transition: color 0.15s linear 0s, background-color 0.3s linear 0s;} -webkit-transition:color 0.15s linear 0s, background-color 0.3s linear 0s;  -moz-transition:color 0.15s linear 0s, background-color 0.3s linear 0s;  -o-transition:color 0.15s linear 0s, background-color 0.3s linear 0s; -ms-transition:color 0.15s linear 0s, background-color 0.3s linear 0s; transition:color 0.15s linear 0s, background-color 0.3s linear 0s;
相關文章
相關標籤/搜索