gpt4 book ai didi

Webkit 渐变语法

转载 作者:技术小花猫 更新时间:2023-10-29 10:57:22 26 4
gpt4 key购买 nike

我一直在阅读有关 -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 是什么意思?

最佳答案

Webkit gradient documentation

For a radial gradient, the first two arguments represent a start circle with origin (x0, y0) and radius r0, and the next two arguments represent an end circle with origin (x1, y1) and radius r1.

所以对于径向:“105 105, 20, 112 120, 50”,它是一个圆,从左边 105 像素、顶部 105 像素开始,半径为 20 像素,结束于左边 112 像素、顶部 120 像素、半径为 50 像素的圆;

对于线性:“40 50、50 50”,从左 40px 上 50px 开始,继续到左 50px 上 50px。

关于Webkit 渐变语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3072118/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com