当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Less luma()用法及代码示例


Less luma 函数用于计算颜色对象的感知亮度或亮度。

亮度颜色通道函数示例

下面举个例子来演示一下Less文件中luma颜色通道的用法。

创建名为 "simple.html" 的 HTML 文件,其中包含以下数据。

<!DOCTYPE html>
<html>
<head>
   <title>Luma Function Example</title>
   <link rel="stylesheet" type="text/css" href="simple.css"/>
</head>
<body>
   <h2>Example of luma color channel</h2>
   <div class="myclass">
   <p> background:71.2513323%;</p>
   </div>
</body>
</html>

现在创建一个名为 "simple.less" 的文件。它类似于 CSS 文件。唯一的区别是它以 ".less" 扩展名保存。

LESS 文件:simple.less

.myclass{
   height:100px;
   width:luma(rgb(50, 250, 150));
   padding:30px 0px 0px 25px;
   background-color:(#b361b1);
   color:yellow;
}

将文件 "simple.html" 和 "simple.less" 放在 Node.js 的根文件夹中

现在,执行以下代码:lessc simple.less simple.css

Less lima function1

这将编译 "simple.less" 文件。将生成名为 "simple.css" 的 CSS 文件。

例如:

Less lima function2

生成的 CSS "simple.css",代码如下:

.myclass {
  height:100px;
  width:71.2513323%;
  padding:30px 0px 0px 25px;
  background-color:#b361b1;
  color:yellow;
}

输出:

Less lima function3



相关用法


注:本文由纯净天空筛选整理自 Less luma()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。