径向渐变由它的中心定义。为了创建一个径向渐变,你也必须至少定义两种颜色结点。颜色结点即你想要呈现平稳过渡的颜色。同时,你也可以指定渐变的中心、形状(原型或椭圆形)、大小。默认情况下,渐变的中心是 center(表示在中心点),渐变的形状是 ellipse(表示椭圆形),渐变的大小是 farthest-corner(表示到最远的角落)。
语法background: radial-gradient(center, shape size, start-color, ..., last-color);
(1)、径向渐变 - 颜色结点均匀分布(默认情况下)
XML/HTML Code复制内容到剪贴板
<!DOCTYPEhtml><html><head><style>#grad1{height:150px;width:200px;background:-webkit-radial-gradient(red,green,blue);background:-o-radial-gradient(red,green,blue);background:-moz-radial-gradient(red,green,blue);background:radial-gradient(red,green,blue);}</style></head><body><h3>径向渐变-颜色结点均匀分布</h3><divid="grad1"></div><p><strong>注意:</strong>InternetExplorer9及之前的版本不支持渐变。</p></body></html>(2)、径向渐变 - 颜色结点不均匀分布
XML/HTML Code复制内容到剪贴板
<!DOCTYPEhtml><html><head><style>#grad1{height:150px;width:200px;background:-webkit-radial-gradient(red5%,green15%,blue60%);background:-o-radial-gradient(red5%,green15%,blue60%);background:-moz-radial-gradient(red5%,green15%,blue60%);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。
XML/HTML Code复制内容到剪贴板
<!DOCTYPEhtml><html><head><style>#grad1{height:100px;width:200px;background:-webkit-radial-gradient(red,yellow,green);background:-o-radial-gradient(red,yellow,green);background:-moz-radial-gradient(red,yellow,green);background:radial-gradient(red,yellow,green);}#grad2{height:100px;width:200px;background:-webkit-radial-gradient(circle,red,yellow,green);background:-o-radial-gradient(circle,red,yellow,green);background:-moz-radial-gradient(circle,red,yellow,green);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() 函数用于重复径向渐变
XML/HTML Code复制内容到剪贴板
<!DOCTYPEhtml><html><head><style>#grad1{height:150px;width:200px;background:-webkit-repeating-radial-gradient(red,yellow10%,green15%);background:-o-repeating-radial-gradient(red,yellow10%,green15%);background:-moz-repeating-radial-gradient(red,yellow10%,green15%);background:repeating-radial-gradient(red,yellow10%,green15%);}</style></head><body><h3>重复的径向渐变</h3><divid="grad1"></div><p><strong>注意:</strong>InternetExplorer9及之前的版本不支持渐变。</p></body></html>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持