LESS - 命名参数



描述

Mixin 通过使用名称而不是位置提供参数值。参数没有放置值的顺序,它们可以按名称引用。命名参数的结果更易于阅读并提供清晰的代码。

示例

以下示例演示了在 LESS 文件中使用命名参数:

<!doctype html>
   <head>
      <title>Named Parameters</title>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
   </head>

   <body>
      <h2>Example of Named Parameters</h2>
      <p class = "class1">Hello World...</p>
      <p class = "class2">Welcome to Tutorialspoint...</p>
   </body>
</html>

接下来,创建 *style.less* 文件。

style.less

.mixin(@color: black; @fontSize: 10px) {
   color: @color;
   font-size: @fontSize;
}

.class1 {
   .mixin(@fontSize: 20px; @color: #F5A9D0);
}

.class2 {
   .mixin(#F79F81; @fontSize: 20px);
}

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

lessc style.less style.css

执行上述命令;它将自动创建包含以下代码的 *style.css* 文件:

style.css

.class1 {
   color: #F5A9D0;
   font-size: 20px;
}

.class2 {
   color: #F79F81;
   font-size: 20px;
}

输出

按照以下步骤查看上述代码的工作原理:

  • 将上述 html 代码保存到 **named_param.html** 文件中。

  • 在浏览器中打开此 HTML 文件,将显示以下输出。

Named Parameters
less_parametric_mixins.htm
广告