在前端開發過程中,有時會利用linear-gradient實現各種各樣的效果,本章來介紹css中linear-gradient()函數是做什麼的?實現線性漸變的圓形邊框(代碼)。有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
一、css linear-gradient()是什麼?
1.定義
css linear-gradient函數,用於建立一個線性漸變的 "映像"。
2.用法
為了建立一個線性漸變,你需要設定一個起始點和一個方向(指定為一個角度)的漸變效果。你還要定義終止色。終止色就是你想讓Gecko去平滑的過渡,而且你必須指定至少兩種,當然也會可以指定更多的顏色去創造更複雜的漸層效果。
範例(指定3種終止色):
background: -webkit-linear-gradient(red,yellow,blue); /* Safari 5.1 to 6.0 */ background: -o-linear-gradient(red,yellow,blue); /* Opera 11.1 to 12.0 */ background: -moz-linear-gradient(red,yellow,blue); /* Firefox 3.6 to 15 */ background: linear-gradient(red,yellow,blue); /* 标准语法 */
效果圖:
#範例裡沒有指定一個方向來實現線性漸變,因此是預設的從上而下來實現效果,也可以指定一個方向(角度)來實現效果,例:
#指定一個方向(從左往右):
background: -webkit-linear-gradient(right,red,yellow,blue); /* Safari 5.1 to 6.0 */ background: -o-linear-gradient(right,red,yellow,blue); /* Opera 11.1 to 12.0 */ background: -moz-linear-gradient(right,red,yellow,blue); /* Firefox 3.6 to 15 */ background: linear-gradient(to right,red,yellow,blue);/* 标准语法 */
指定一個方向(45度角):
background: linear-gradient(45deg,red,yellow,blue); /* 标准语法 */
#同時,也可以實現漸層透明的效果(定義一個透明度):
background: -webkit-linear-gradient(right,rgba(255,0,0,1),rgba(255,0,0,0)); /*Safari 5.1-6*/ background: -o-linear-gradient(right,rgba(255,0,0,1),rgba(255,0,0,0)); /*Opera 11.1-12*/ background: -moz-linear-gradient(right,rgba(255,0,0,1),rgba(255,0,0,0)); /*Fx 3.6-15*/ background: linear-gradient(to right, rgba(255,0,0,1), rgba(255,0,0,0)); /*Standard*/
二、css設定線性漸變的圓形邊框(程式碼)
#原則:
先製作兩個的正方形,大小不一,疊在一起
使用邊框圓角屬性:border-radius設定邊框的圓角度為100%
在使用linear-gradient()添加外圍圓形的漸變色,就製作了:
程式碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>边框渐变的圆形</title> <style> .border1{ width: 200px; height: 200px; margin:100px auto; position: relative; border: 1px solid transparent; border-radius: 100%; background: white; background-clip: padding-box; padding: 10px; } .border1::after{ position: absolute; top: -40px; bottom: -40px; left: -40px; right: -40px; background: linear-gradient(45deg,red, blue); content: ''; z-index: -1; border-radius: 100%; } </style> </head> <body> <div class="border1"></div> </body> </html>
實例很簡單,大家可以動手實作一下,也可以在這個基礎上做出修改,例如:半圓.....
以上是css中linear-gradient()函數是做什麼的?實現線性漸層的圓形邊框(代碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!