CSS3 漸變(gradients)可讓你在兩個或多個指定的顏色之間顯示平穩的過渡。之前,你必須使用圖像來實現這些效果。可是,經過使用 CSS3 漸變(gradients),你能夠減小下載的事件和寬帶的使用。此外,漸變效果的元素在放大時看起來效果更好,由於漸變(gradient)是由瀏覽器生成的。css
CSS3 定義了兩種類型的漸變(gradients):html
- 線性漸變(Linear Gradients)- 向下/向上/向左/向右/對角方向
- 徑向漸變(Radial Gradients)- 由它們的中心定義
瀏覽器支持狀況,IE10及以上,Google26及以上 web
語法
background: linear-gradient(direction, color-stop1, color-stop2, ...);
線性漸變 - 從上到下(默認狀況下)瀏覽器
從頂部開始的線性漸變。起點是紅色,慢慢過渡到藍色動畫
#grad1 { height: 200px; background: -webkit-linear-gradient(red, blue); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(red, blue); /* Opera 11.1 - 12.0 */ background: -moz-linear-gradient(red, blue); /* Firefox 3.6 - 15 */ background: linear-gradient(red, blue); /* 標準的語法(必須放在最後) */ }
線性漸變 - 從左到右spa
下面的實例演示了從左邊開始的線性漸變。起點是紅色,慢慢過渡到藍色:code
#grad1 { height: 200px; background: -webkit-linear-gradient(left, red , blue); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(right, red, blue); /* Opera 11.1 - 12.0 */ background: -moz-linear-gradient(right, red, blue); /* Firefox 3.6 - 15 */ background: linear-gradient(to right, red , blue); /* 標準的語法(必須放在最後) */ }
線性漸變 - 對角htm
你能夠經過指定水平和垂直的起始位置來製做一個對角漸變。事件
下面的實例演示了從左上角開始(到右下角)的線性漸變。起點是紅色,慢慢過渡到藍色:ip
#grad1 { height: 200px; background: -webkit-linear-gradient(left top, red , blue); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(bottom right, red, blue); /* Opera 11.1 - 12.0 */ background: -moz-linear-gradient(bottom right, red, blue); /* Firefox 3.6 - 15 */ background: linear-gradient(to bottom right, red , blue); /* 標準的語法(必須放在最後) */ }
使用角度
若是你想要在漸變的方向上作更多的控制,你能夠定義一個角度,而不用預約義方向(to bottom、to top、to right、to left、to bottom right,等等)。
語法
background: linear-gradient(angle, color-stop1, color-stop2);
角度是指水平線和漸變線之間的角度,逆時針方向計算。換句話說,0deg 將建立一個從下到上的漸變,90deg 將建立一個從左到右的漸變。
可是,請注意不少瀏覽器(Chrome,Safari,fiefox等)的使用了舊的標準,即 0deg 將建立一個從左到右的漸變,90deg 將建立一個從下到上的漸變。換算公式 90 - x = y 其中 x 爲標準角度,y爲非標準角度。
下面的實例演示了使用角度從下到上的漸變:
#grad1 { height: 100px; background: -webkit-linear-gradient(0deg, red, blue); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(0deg, red, blue); /* Opera 11.1 - 12.0 */ background: -moz-linear-gradient(0deg, red, blue); /* Firefox 3.6 - 15 */ background: linear-gradient(0deg, red, blue); /* 標準的語法(必須放在最後) */ }
經過使用漸變製做進度條
<div class="progress"> <div class="progress-bar progress-bar-striped" style="width:60%">60%</div> </div>
* { margin: 0; padding: 0; font-family: "微軟雅黑"; } .progress { margin: 100px auto; width: 80%; box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); border-radius: 4px; height: 20px; line-height: 20px; overflow: hidden; background-color: #f5f5f5; } .progress-bar { float: left; height: 100%; color: #fff; text-align: center; background-color: #5cb85c; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); } .progress-bar-striped { border: 1px solid #ccc; background-image: linear-gradient(45deg, rgba(0, 0, 0, 1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-size: 40px 40px; }
主要用到漸變的樣式以下:
background-image: linear-gradient(45deg, rgba(0, 0, 0, 1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
樣式解釋
一、rgba(255,255,255,.15) 25%:從左下角開始到25%都爲rgba(255,255,255,.15),默認隱藏了起始點的設定
二、transparent 25%到transparent50%:從25%到50%的位置都是設置全透明的
三、rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%:50%到75%都是同一種顏色rgba(255, 255, 255, .15)
四、從75%到100%爲transparent(透明),這裏又省略了一個100%他是默認值
五、 這代碼直接使用時沒有什麼效果的,他必須有背景顏色作陪襯。如:background-color:#33CC99
若是加上動畫效果
.progress.active .progress-bar {
animation: progress-bar-stripes 2s linear infinite;
}@keyframes progress-bar-stripes {
from {
background-position: 0 0
}
to {
background-position: 40px 0
}
}
若是不須要漸變以下的樣式:
background: linear-gradient(#fb3 33.3%, #58a 0); background-size: 40px 40px;
若是不想要漸變效果,第二個顏色的位置小於等於第一個顏色的位置 ,一樣適用於透明度
若是多個顏色塊
background: linear-gradient(#fb3 50%, #58a 0, #58a 66.6%, yellowgreen 0); background-size: 40px 40px;
使用transparent 0(從0位置開始爲透明的)
background:linear-gradient(90deg, rgba(200,0,0,.5) 50%, transparent 0); background-size: 40px 40px;
根據第二個顏色的位置小於等於第一個顏色的位置,不會產生漸變 ,因此0-50%是紅色,50%-100%都是透明色,由於transparent 0 後面的0表明起始位置,比前面的顏色的位置50% 小。