示例
以下示例演示了在 LESS 文件中使用 mixin 防护-
mixin-guard.html
<!doctype html>
<head>
<meta charset="UTF-8" />
<title>菜鸟教程(cainiaoya.com)</title>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
</head>
<body>
<h1>欢迎来到菜鸟教程</h1>
<p class="class1">Hello 菜鸟教程</p>
<p class="class2">网络上最大的教程库。</p>
</body>
</html>
现在让我们创建一个与 CSS 非常相似的文件 style.less,唯一的区别是它将以 .less 扩展名保存。 .html 和 .less 这几个文件都应在 F 盘的文件夹 lesscode 内创建。
style.less
.mixin (@a) when (lightness(@a) >= 50%) {
font-size: 14px;
}
.mixin (@a) when (lightness(@a) < 50%) {
font-size: 16px;
}
.mixin (@a) {
color: @a;
}
.class1 {
.mixin(#FF0000)
}
.class2 {
.mixin(#555)
}
使用以下命令将 style.less 文件编译为 style.css-
PS F:\lesscode> lessc style.less style.css
当您运行上述命令时,它将自动创建style.css文件。 每当您更改LESS文件时,都需要在cmd中运行上述命令,然后style.css文件将得到更新。
运行以上命令时,style.css文件将具有以下代码-
style.css
.class1 {
font-size: 14px;
color: #FF0000;
}
.class2 {
font-size: 16px;
color: #555;
}