圓角(border-radius)樣式

圓角樣式示例(僅在firefox內核,safari,chrome等內核瀏覽器下支持)css



CSS3的border-radius規範html

  1. 屬性:
    border-top-right-radius
    border-bottom-right-radius
    border-bottom-right-radius
    border-bottom-right-radius
    值:<length> <length>?。它們分別是定義角形狀的四分之一橢圓的兩個半徑。如圖:


 

  1. 第一個值是水平半徑。
  2. 若是第二個值省略,則它等於第一個值,這時這個角就是一個四分之一圓角。
  3. 若是任意一個值爲0,則這個角是矩形,不會是圓的。
  4. 值不容許是負值。
  1. 屬性:border-radius。它是上面四個屬性值的簡寫。
    值:<length>{1,4} [ / <length>{1,4} ]?
    1. 若是斜線先後的值都存在,那麼斜線前的值設置水平半徑,且斜線後的值設置垂直半徑。若是沒有斜線,則水平半徑和垂直半徑相等。
    2. 四個值是按照top-left、top-right、 bottom-right、 bottom-left的順序來設置的。若是bottom-left省略,那麼它等於top-right。若是bottom-right省略,那麼它等於top-left。若是top-right省略,那麼它等於top-left。
  2. 應用範圍:全部的元素,除了table的樣式屬性border-collapse是collapse時
  3. 內邊半徑等於外邊半徑減去對應邊的厚度。當這個結果是負值時,內邊半徑是0。因此內外邊曲線的圓心並不必定是一致的。
  4. border-radius也會致使該元素的背景也是圓的,即便border是none。若是background-clip是padding-box,則背景(background)會被曲線的內邊裁剪。若是是border-box則被外邊裁剪。border和padding定義的區域也同樣會被曲線裁剪。
  5. 全部的邊框樣式(solid、dotted、inset等)都遵守角的曲線。若是設置了border-image,則曲線之外的部分會被裁剪掉。
  6. 若是角的兩個相鄰邊有不一樣的寬度,那麼這個角將會從寬的邊平滑過分到窄的邊。其中一條邊甚至能夠是0。
  7. 兩條相鄰邊顏色和樣式轉變的中心點是在一個和兩邊寬度成正比的角上。好比,兩條邊寬度相同,這個點就是一個45°的角上,若是一條邊是另一條邊的兩倍,那麼這個點就在一個30°的角上。界定這個轉變的線就是鏈接在內外曲線上的兩個點的直線
  8. 角不容許相互重疊,因此當相鄰兩個角半徑的和大於所在矩形區域的大小時,用戶代理(瀏覽器)好比縮小一個或多個角半徑。運算法則以下:f = min(Li/Si),i ∈ {top, right, bottom, left},Ltop = Lbottom = 所在矩形區域的寬,Lleft = Lright = 所在矩形區域的高。若是f < 1,那麼全部角半徑都乘以f。

實際CSS應用,須要根據不一樣瀏覽器HACK
 
 
複製代碼
  1. -moz-border-radius-topleft: 11px; 
  2. -moz-border-radius-topright: 11px; 
  3. -khtml-border-top-left-radius: 11px; 
  4. -khtml-border-top-right-radius: 11px; 
  5. -webkit-border-top-left-radius: 11px; 
  6. -webkit-border-top-right-radius: 11px; 
  7. border-top-right-radius: 11px; 
  8. border-top-left-radius: 11px; 
  9. -moz-border-radius-bottomleft: 11px; 
  10. -moz-border-radius-bottomright: 11px; 
  11. -khtml-border-bottom-left-radius: 11px; 
  12. -khtml-border-bottom-right-radius: 11px; 
  13. -webkit-border-bottom-left-radius: 11px; 
  14. -webkit-border-bottom-right-radius: 11px; 
  15. border-bottom-left-radius: 11px; 
  16. border-bottom-right-radius: 11px;

 
 
可簡寫爲
 
複製代碼
  1. -moz-border-radius: 15px; 
  2. -khtml-border-radius: 15px; 
  3. -webkit-border-radius: 15px; 
  4. border-radius: 15px;
-----------------------------------------------------------------------------------------------------------------------------------------

語法:

border-radius : none | <length>{1,4} [ / <length>{1,4} ]?

相關屬性: border-top-right-radius , border-bottom-right-radius , border-bottom-left-radius , border-top-left-radius css3

取值:

<length>
由浮點數字和單位標識符組成的長度值。不可爲負值。
border-top-left-radius:
由浮點數字和單位標識符組成的長度值。不可爲負值。 

說明:

  1. 第一個值是水平半徑。
  2. 若是第二個值省略,則它等於第一個值,這時這個角就是一個四分之一圓角。
  3. 若是任意一個值爲0,則這個角是矩形,不會是圓的。
  4. 值不容許是負值。 


radius,就是半徑的意思。用這個屬性能夠很容易作出圓角效果,固然,也能夠作出圓形效果。原理很簡單,「正方形的內切圓的半徑等於正方形邊長的一半」。下面就作一個紅色的圓。web

完整的代碼以下:算法

<!DOCTYPE html> 
 <html> 
     <head> 
         <meta charset="utf-8"> 
         <title>CSS3的border-radius屬性</title> 
         <style> 
         .circle {
             background-color:#f00;
             width: 600px;   /* div的寬和高爲600px即正方形的邊長爲600px */
             height: 600px;
             text-align: center;
                     
             -moz-border-radius: 300px;   /* 圓的半徑爲邊長的一半,即300px */
             -webkit-border-radius: 300px;
             border-radius: 300px;
      
             display: -moz-box;
             display: -webkit-box;
             display: box;
      
             -moz-box-orient: horizontal; 
             -webkit-box-orient: horizontal;
             box-orient: horizontal;
      
             -moz-box-pack: center;
             -moz-box-align: center;
      
             -webkit-box-pack: center;
             -webkit-box-align: center;
      
             box-pack: center;
             box-align: center; 
             
             font:normal 80px/100% Arial;
             text-shadow:1px 1px 1px #000;
             color:#fff;
         }
        </style>     
     </head>  
     <body> 
         <div class="circle"> 
            Hello,World!
         </div>  
     </body> 
 </html>

接下來用這個屬性作一個奧運五環,與前面不一樣的是,圓環是有邊的厚度的,這裏用的是相對單位em。代碼以下:chrome

<!DOCTYPE html> 
 <html> 
     <head> 
         <meta charset="UTF-8" /> 
         <title>The Olympic Flag</title>  
         <style type="text/css" media="screen"> 
         body {
             margin:20px;
             background-color:#efefef;
         }
         ul.flag {
             list-style-type:none;
             position: relative;
             margin: 20px auto;
         } 
       
         .flag li, .flag li:before, .flag li:after {
             -webkit-border-radius: 6em;
             -moz-border-radius: 6em;
             border-radius: 6em;
             position: absolute;
         }
         
         .flag li {
             width: 12em;
             height: 12em;
             left: 0;
             top: 0;
             font-size: 1em;
         }  
       
         .flag li:after {
             display: block;
             content: "";
             top: -0.1em;
             left: -0.1em;
             right: -0.1em;
             bottom: -0.1em;
             border: solid 1.4em black;
         }
         
         .flag .blue   { z-index: 10; left: 0; top: 0; }
         .flag .yellow { z-index: 20; left: 6.8em;  top: 5.7em; }
         .flag .black  { z-index: 21; left: 13.6em; top: 0; }
         .flag .green  { z-index: 20; left: 20.4em; top: 5.7em; }
         .flag .red    { z-index: 10; left: 27.2em; top: 0px; }   
         
         .flag .blue:after   { border-color: blue; }   
         .flag .yellow:after { border-color: yellow; } 
         .flag .black:after  { border-color: black; }
         .flag .green:after  { border-color: green; } 
         .flag .red:after    { border-color: red; }
         /* 藍色壓住黃色 */  
         .flag .blue.alt { z-index: 24; }
         .flag .blue.alt, 
         .flag .blue.alt:before, 
         .flag .blue.alt:after {
             border-top-color: transparent;
             border-left-color: transparent;
             border-bottom-color: transparent;
         }
         /* 黃色壓住黑色 */
         .flag .yellow.alt { z-index: 23; }
         .flag .yellow.alt, 
         .flag .yellow.alt:before, 
         .flag .yellow.alt:after {
             border-right-color: transparent;
             border-left-color: transparent;
             border-bottom-color: transparent;
         }    
         /* 綠色壓住黑色  */
         .flag .green.alt { z-index: 23; }
         .flag .green.alt,
         .flag .green.alt:before,
         .flag .green.alt:after {
             border-top-color: transparent;
             border-right-color: transparent;
             border-bottom-color: transparent;
         }
         /* 紅色壓住綠色  */
         .flag .red.alt { z-index: 23; }
         .flag .red.alt, 
         .flag .red.alt:before,
         .flag .red.alt:after {
             border-top-color: transparent;
             border-right-color: transparent;
             border-left-color: transparent;
         }       
         </style>   
     </head> 
     <body> 
         <ul class="flag"> 
             <li class="blue"></li> 
             <li class="blue alt"></li> 
             <li class="yellow"></li> 
             <li class="yellow alt"></li> 
             <li class="black"></li> 
             <li class="green"></li> 
             <li class="green alt"></li> 
             <li class="red"></li> 
             <li class="red alt"></li> 
         </ul>  
     </body> 
 </html>

相關文章
相關標籤/搜索