径向渐变由它的中心定义。为了创建一个径向渐变,你也必须至少定义两种颜色结点。颜色结点即你想要呈现平稳过渡的颜色。同时,你也可以指定渐变的中心、形状(原型或椭圆形)、大小。默认情况下,渐变的中心是 center(表示在中心点),渐变的形状是 ellipse(表示椭圆形),渐变的大小是 farthest-corner(表示到最远的角落)。
语法background: radial-gradient(center, shape size, start-color, ..., last-color);
(1)、径向渐变 - 颜色结点均匀分布(默认情况下)
- <!DOCTYPEhtml>
- <html>
- <head>
- <style>
- #grad1{
- height:150px;
- width:200px;
- background:-webkit-radial-gradient(red,green,blue);/*Safari5.1-6.0*/
- background:-o-radial-gradient(red,green,blue);/*Opera11.6-12.0*/
- background:-moz-radial-gradient(red,green,blue);/*Firefox3.6-15*/
- background:radial-gradient(red,green,blue);/*标准的语法(必须放在最后)*/
- }
- </style>
- </head>
- <body>
- <h3>径向渐变-颜色结点均匀分布</h3>
- <divid="grad1"></div>
- <p><strong>注意:</strong>InternetExplorer9及之前的版本不支持渐变。</p>
- </body>
- </html>
(2)、径向渐变 - 颜色结点不均匀分布
- <!DOCTYPEhtml>
- <html>
- <head>
- <style>
- #grad1{
- height:150px;
- width:200px;
- background:-webkit-radial-gradient(red5%,green15%,blue60%);/*Safari5.1-6.0*/
- background:-o-radial-gradient(red5%,green15%,blue60%);/*Opera11.6-12.0*/
- background:-moz-radial-gradient(red5%,green15%,blue60%);/*Firefox3.6-15*/
- background:radial-gradient(red5%,green15%,blue60%);/*标准的语法(必须放在最后)*/
- }
- </style>
- </head>
- <body>
- <h3>径向渐变-颜色结点不均匀分布</h3>
- <divid="grad1"></div>
- <p><strong>注意:</strong>InternetExplorer9及之前的版本不支持渐变。</p>
- </body>
- </html>
(3)、设置形状
shape 参数定义了形状。它可以是值 circle 或 ellipse。其中,circle 表示圆形,ellipse 表示椭圆形。默认值是 ellipse。
- <!DOCTYPEhtml>
- <html>
- <head>
- <style>
- #grad1{
- height:100px;
- width:200px;
- background:-webkit-radial-gradient(red,yellow,green);/*Safari5.1-6.0*/
- background:-o-radial-gradient(red,yellow,green);/*Opera11.6-12.0*/
- background:-moz-radial-gradient(red,yellow,green);/*Firefox3.6-15*/
- background:radial-gradient(red,yellow,green);/*标准的语法(必须放在最后)*/
- }
- #grad2{
- height:100px;
- width:200px;
- background:-webkit-radial-gradient(circle,red,yellow,green);/*Safari5.1-6.0*/
- background:-o-radial-gradient(circle,red,yellow,green);/*Opera11.6-12.0*/
- background:-moz-radial-gradient(circle,red,yellow,green);/*Firefox3.6-15*/
- background:radial-gradient(circle,red,yellow,green);/*标准的语法(必须放在最后)*/
- }
- </style>
- </head>
- <body>
- <h3>径向渐变-形状</h3>
- <p><strong>椭圆形Ellipse(默认):</strong></p>
- <divid="grad1"></div>
- <p><strong>圆形Circle:</strong></p>
- <divid="grad2"></div>
- <p><strong>注意:</strong>InternetExplorer9及之前的版本不支持渐变。</p>
- </body>
- </html>
(4)、不同尺寸大小关键字的使用
size 参数定义了渐变的大小。它可以是以下四个值:closest-side、farthest-side、closest-corner、farthest-corner
(5)、重复的径向渐变
repeating-radial-gradient() 函数用于重复径向渐变
- <!DOCTYPEhtml>
- <html>
- <head>
- <style>
- #grad1{
- height:150px;
- width:200px;
- background:-webkit-repeating-radial-gradient(red,yellow10%,green15%);/*Safari5.1-6.0*/
- background:-o-repeating-radial-gradient(red,yellow10%,green15%);/*Opera11.6-12.0*/
- background:-moz-repeating-radial-gradient(red,yellow10%,green15%);/*Firefox3.6-15*/
- background:repeating-radial-gradient(red,yellow10%,green15%);/*标准的语法(必须放在最后)*/
- }
- </style>
- </head>
- <body>
- <h3>重复的径向渐变</h3>
- <divid="grad1"></div>
- <p><strong>注意:</strong>InternetExplorer9及之前的版本不支持渐变。</p>
- </body>
- </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持