举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > gradient function Less svg - gradient函数

gradient function Less svg - gradient函数

2023-04-07 01:31 Less教程

gradient function Less svg - gradient函数

gradient function

Gradient function是一种数学函数,它可以用来描述一个函数的变化率。它是一个多元函数,用来表示某个变量在其他变量上的偏导数。它的计算方法是,首先将所有变量求偏导,然后将所有偏导数合并成一个多元函数。

Gradient function在机器学习中被广泛应用,它可以帮助我们优化模型的性能。通过使用梯度函数,我们可以计算出损失函数的最小值,这样就能够得到最优的模型参数。

def gradient_function(x, y): 
    grad = np.zeros(x.shape) 

    # Calculate the partial derivatives 
    # for each element of x and y 
    for i in range(x.shape[0]): 
        for j in range(y.shape[1]): 

            # Calculate the partial derivative  
            # with respect to x[i][j] 
            grad[i][j] = (y[i][j+1] - y[i][j-1])/(2*h) 

    return grad 

Less svg - gradient函数

描述

svg-gradient是一种颜色到另一种颜色的转换。 它可以向同一元素添加许多颜色。 它包括至少三个参数:

  • 第一个参数标识渐变类型和方向。

  • 其他参数列出其位置和颜色。

在第一个和最后一个位置指定的颜色是可选的。 方向可以设置为; 到底部,到右,到右下,到右上,椭圆或椭圆在中心。


Parameters - colors stops in list:

  • list:列出所有颜色及其位置。

  • 转义值或标识符列表:设置方向。


Parameters - color stops in arguments:

  • 转义值或标识符列表:设置方向。

  • color[percentage] pair:第一种颜色及其相应位置。

  • color percent pair: 第二种颜色及其各自的位置。


例子

下面的例子演示了在LESS文件中使用svg渐变:


misc_example.htm

<!doctype html>
<head>
   <link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="style">
   <h2>Welcome to </h2>
   <p>The largest Tutorials Library on the web.</p>
</div>
</body>
</html>


接下来,创建文件 style.less

style.less

.style {
  @style: orange, green 30%, #DAA520;
  background-image: svg-gradient(ellipse, @style);
}


您可以使用以下命令将 style.less 文件编译为 style.css :

lessc style.less style.css


接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:

style.css

.style {
  background-image: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%201%201%22%20preserveAspectRatio%3D%22none%22%3E%3CradialGradient%20id%3D%22gradient%22%20gradientUnits%3D%22userSpaceOnUse%22%20cx%3D%2250%25%22%20cy%3D%2250%25%22%20r%3D%2275%25%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23ffa500%22%2F%3E%3Cstop%20offset%3D%2230%25%22%20stop-color%3D%22%23008000%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23daa520%22%2F%3E%3C%2FradialGradient%3E%3Crect%20x%3D%22-50%22%20y%3D%22-50%22%20width%3D%22101%22%20height%3D%22101%22%20fill%3D%22url(%23gradient)%22%20%2F%3E%3C%2Fsvg%3E');
}
阅读全文
以上是鳄鱼CMS为你收集整理的gradient function Less svg - gradient函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们