repeating-radial-gradient() - CSS(层叠样式表) 编辑
CSS函数repeating-radial-gradient()
创建一个从原点辐射的重复渐变组成的<image>
。它类似于radial-gradient
并且采用相同的参数,但是它会在所有方向上重复颜色,以覆盖其整个容器。函数的结果是 <gradient>
数据类型的对象, 是一种特殊的<image>
类型。
/* 一个从容器中心点开始的重复渐变,
从红色开始,渐变到蓝色,再渐变到绿色 */
repeating-radial-gradient(circle at center, red 0, blue, green 30px);
每次重复时,色标位置的偏移量都是基准渐变长度(最后一个色标和第一个之间的距离)的倍数。因此,最后色标的色值应该与第一个色标的色值保持一致;如果不一致的话,会导致非常突兀的渐变效果。
与其他渐变一样,线形重复渐变没有提供固定的尺寸; 即, 它没有原始尺寸或首选尺寸,也没有首选的比列。它将自适应于对应元素的尺寸。
提示: 因为 <gradient>
属于<image>
数据类型,所以只能在可以使用 <image>
的地方使用它们。因此repeating-linear-gradient()
不适用于background-color
以及使用<color>
数据类型的地方。
语法
值
<position>
position
与background-position
或者transform-origin
类似。默认值为center
.<angle>
- 渐变轴的角度。角度顺时针增加,默认值为
0deg
。 <shape>
- 渐变的形状。圆形(渐变的形状是一个半径不变的正圆)或椭圆形(轴对称椭圆)。默认值为椭圆。默认值为椭圆形,即
ellipse
。 <extent-keyword>
- 关键字用于描述边缘轮廓的具体位置。以下为关键字常量:
Keyword Description closest-side
渐变的边缘形状与容器距离渐变中心点最近的一边相切(圆形)或者至少与距离渐变中心点最近的垂直和水平边相切(椭圆)。 closest-corner
渐变的边缘形状与容器距离渐变中心点最近的一个角相交。 farthest-side
与 closest-side
相反,边缘形状与容器距离渐变中心点最远的一边相切(或最远的垂直和水平边)。farthest-corner
渐变的边缘形状与容器距离渐变中心点最远的一个角相交。 提示: 早期的草案中还包含其他关键字(
cover
andcontain
) ,分别相当于标准关键字farthest-corner
和closest-side
,。但因为在某些实现中丢弃了这些旧的关键字,所以请仅使用标准关键字。<color-stop>
- 表示某个确定位置的固定色值,包含一个
<color>
值加上可选的位置值(相对虚拟渐变射线的<percentage>
或者<length>
长度值)。 百分比值0%
,或者长度值0
,表示渐变中心点;百分比值100%
表示渐变射线与边缘形状相交的点。 其间的百分比值线性对应渐变射线上的点。
形式语法
repeating-radial-gradient(
[[ circle || <length> ] [at <position>]? , |
[ ellipse || [<length> | <percentage> ]{2}] [at <position>]? , |
[[ circle | ellipse ] || <extent-keyword> ] [at <position>]? , |
at <position> , <color-stop> [ , <color-stop> ]+ )
\---------------------------------------------------------------/\--------------------------------/
定义轮廓、尺寸和结束形状的位置 色标列表
where <extent-keyword> = closest-corner | closest-side | farthest-corner | farthest-side
and <color-stop> = <color> [ <percentage> | <length> ]?
示例
径向渐变沿着一条轴线进行渲染。在每个轴线的端点处可以指定一个半径。可以想象为创建了两个“圆”,每个圆的中心位置用点指定,大小由半径值指定。渐变从内圆的圆周向外延伸到外圆的圆周。
黑白相间的渐变
background: repeating-radial-gradient(black, black 5px, white 5px, white 10px);
Farthest-corner渐变
background: repeating-radial-gradient(ellipse farthest-corner, red, black 5%, blue 5%, green 10%);
规格
规格 | 状态 | 备注 |
---|---|---|
CSS Images Module Level 3 repeating-radial-gradient() | Candidate Recommendation | Initial definition. |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support (on background and background-image ) | 10 -webkit | 3.6 (1.9.2)-moz 16 (16)[1] | 10 | 12 -o 12.5 | 5.1 -webkit |
On border-image | (Yes) | 29 (29) | (Yes) | (Yes) | (Yes) |
On any other property that accept <image> | 未实现 | (Yes) | (Yes) | (Yes) | (Yes) |
Interpolation hints (a percent without a color) | 40 | 36 (36) | ? | ? | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support (on background and background-image ) | 4.4 | 46.0 (46) | 10 | 12.1 | 7.1 |
On border-image | 29.0 (29) | (Yes) | (Yes) | (Yes) | (Yes) |
On any other property that accept <image> | 未实现 | (Yes) | (Yes) | (Yes) | (Yes) |
[1] Before Firefox 36, Gecko didn't apply gradient on the pre-multiplied color space, leading to shade of grey unexpectedly appearing when used with transparency. Since Firefox 42, the prefixed version of gradients can be disabled by setting layout.css.prefixes.gradients
to false
.
In addition to the unprefixed support, Gecko 44.0 (Firefox 44.0 / Thunderbird 44.0 / SeaMonkey 2.41) added support for a -webkit
prefixed version of the function for web compatibility reasons behind the preference layout.css.prefixes.webkit
, defaulting to false
. Since Gecko 49.0 (Firefox 49.0 / Thunderbird 49.0 / SeaMonkey 2.46) the preference defaults to true
.
参阅:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论