negation
优质
小牛编辑
134浏览
2023-12-01
描述 (Description)
negation函数对difference函数具有相反的效果, difference函数从第二输入颜色中减去第一输入颜色。 它会产生更亮的颜色。 负值反转。
参数 (Parameters)
color1 - 作为color1的颜色对象minuend.
color2 - 作为subtrahend颜色对象。
返回值 (Returns)
颜色
例子 (Example)
以下示例演示了在LESS文件中使用negation函数 -
<html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
</head>
<body>
<h2>Negation Function</h2>
<div class = "color1">
<p>(color1) <br> #ff6600</p>
</div><br>
<div class = "color2">
<p>(color2) <br> #333333</p>
</div><br>
<div class = "res">
<p>(result) <br> #cc9933</p>
</div>
</body>
</html>
接下来,创建style.less文件。
style.less
.color1 {
width: 100px;
height: 100px;
background-color: #ff6600;
}
.color2 {
width: 100px;
height: 100px;
background-color: #333333;
}
.res {
width: 100px;
height: 100px;
background-color: negation(#ff6600, #333333);
}
p {
padding: 30px 0px 0px 25px;
}
您可以使用以下命令将style.less编译为style.css -
lessc style.less style.css
执行上面的命令; 它将使用以下代码自动创建style.css文件 -
style.css
.color1 {
width: 100px;
height: 100px;
background-color: #ff6600;
}
.color2 {
width: 100px;
height: 100px;
background-color: #333333;
}
.result {
width: 100px;
height: 100px;
background-color: #cc9933;
}
p {
padding: 30px 0px 0px 25px;
}
输出 (Output)
请按照以下步骤查看上述代码的工作原理 -
将以上代码保存在color_blending_negation.html文件中。
在浏览器中打开此HTML文件,将显示以下输出。