您的位置:58编程 > LESS 保护的命名空间

LESS 保护的命名空间

2023-04-25 10:33 Less教程

 LESS 保护的命名空间

描述

当guard应用于命名空间时,只有在guard条件返回true时才使用由命名空间定义的mixin。 命名空间防护类似于mixins上的guard。


例子

下面的示例演示了在LESS文件中使用防护名称空间:

<html>
<head>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <title>Guarded Namespaces</title>
</head>
<body>
<h2>Welcome to Tutorialspoint</h2>
<p>This will paragraph be displayed red, when (@color = blue) in style.less and when color is other than blue, then this paragraph will be default black.</p>
</body>
</html>


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

style.less

@import "//www..cn/less/lib.less";
#namespace when (@color = blue) {
  .mixin() {
   color: red;
  }
}
p{
 #namespace .mixin();
}

将路径从http://www.w3cshool.cn/statics/demosource/lib.less导入到style.less中的lib.less文件


lib.less

@color: blue;


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

lessc style.less style.css


接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:

style.css

p {
  color: red;
}


输出

让我们执行以下步骤,看看上面的代码如何工作:

  • less_mixin_guarded_namespaces.html 文件中保存html代码。

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


shuc

阅读全文
以上是58编程为你收集整理的 LESS 保护的命名空间全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58编程 58biancheng.com 版权所有 联系我们
桂ICP备12005667号-32 Powered by CMS