较少混合颜色操作用于混合两种颜色以及不透明度。用于混色操作的参数是:
- 颜色1:它用于指定颜色对象。
- 颜色2:它也用于着色对象。
- weight:它是一个可选参数,用于通过提供两种颜色之间的百分比平衡点来指定元素的权重。
混合函数示例
下面举个例子来演示一下Less文件中混色操作的用法。
创建名为 "simple.html" 的 HTML 文件,其中包含以下数据。
HTML 文件:simple.html
<!DOCTYPE html>
<html>
<head>
<title>Mix Example</title>
<link rel="stylesheet" type="text/css" href="simple.css"/>
</head>
<body>
<h2>Example of Mix Color Operation</h2>
<div class="myclass">
<p>Mixed color:<br>#b0897d</p>
</div>
</body>
</html>
现在创建一个名为 "simple.less" 的文件。它类似于 CSS 文件。唯一的区别是它以 ".less" 扩展名保存。
LESS 文件:simple.less
.myclass{
height:100px;
width:100px;
padding:30px 0px 0px 25px;
background-color:mix(#b361b1, #acb148, 50%);
color:white;
}
将文件 "simple.html" 和 "simple.less" 放在 Node.js 的根文件夹中
现在,执行以下代码:
相关用法
- Less min()用法及代码示例
- Less max()用法及代码示例
- Less mod()用法及代码示例
- Less isstring()用法及代码示例
- Less image-width()用法及代码示例
- Less alpha()用法及代码示例
- Less ispixel()用法及代码示例
- Less saturation()用法及代码示例
- Less acos()用法及代码示例
- Less contrast()用法及代码示例
- Less isem()用法及代码示例
- Less hsvhue()用法及代码示例
- Less color()用法及代码示例
- Less isnumber()用法及代码示例
- Less percentage()用法及代码示例
- Less pi()用法及代码示例
- Less red()用法及代码示例
- Less image-height()用法及代码示例
- Less iscolor()用法及代码示例
- Less pow()用法及代码示例
注:本文由纯净天空筛选整理自 Less mix()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。