LESS 命名參數
描述
Mixins通過使用它們的名稱提供參數值而不是位置。參數沒有放置值的任何順序,它們可以通過名稱引用。命名參數的結果更容易閱讀,并提供清晰的代碼。
例子
下面的例子演示了在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文件,將顯示如下輸出。