Webkit 渐变语法
我一直在阅读有关 -webkit-gradient
属性的内容,但我不明白它。
径向:
-webkit-gradient(radial, 105 105, 20, 112 120, 50, from(#ff5f98), to(rgba(255,1,136,0)), color-stop(75%, #ff0188)),
105 105, 20, 112 120, 50
是什么意思?
线性:
background: -webkit-gradient(linear, 40 50, 50 50, color-stop(0.0, yellow),
color-stop(0.5, orange), color-stop(1.0, red));
40 50, 50 50
是什么意思?
I've been reading about the -webkit-gradient
property and I don't understand it.
Radial:
-webkit-gradient(radial, 105 105, 20, 112 120, 50, from(#ff5f98), to(rgba(255,1,136,0)), color-stop(75%, #ff0188)),
What does 105 105, 20, 112 120, 50
mean?
Linear:
background: -webkit-gradient(linear, 40 50, 50 50, color-stop(0.0, yellow),
color-stop(0.5, orange), color-stop(1.0, red));
What does 40 50, 50 50
mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Webkit 渐变文档
因此,对于径向:“105 105, 20, 112 120, 50”,它是一个从左侧 105 像素、顶部 105 像素开始、半径为 20 像素的圆,结束于左侧 112 像素、顶部 120 像素、半径为 50 像素的圆;
对于线性:“40 50, 50 50”,从 40 像素左 50 像素顶部开始,并继续到 50 像素左 50 像素顶部。
Webkit gradient documentation
So for radial: "105 105, 20, 112 120, 50", it's a circle starting at 105px left and 105px top with a radius of 20px and ending at a circle 112px left and 120px top with a radius of 50px;
For linear: "40 50, 50 50", start at 40px left 50px top, and continue to 50px left 50px top.