Less Tint
描述
它用于混合顏色與白色,因為你減少顏色的比例。它有以下參數:
color:它代表一個顏色對象。
weight:這是一個可選參數,通過在顏色和白色之間提供百分比平衡點來指定元素的權重。
例子
以下示例演示在LESS文件中使用著色操作:
<html> <head> <title>Tint</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <h2>Example of Tint Color Operation</h2> <div class="myclass1"> <p>color :<br>rgba(66, 97, 5, 0.5)</p> </div><br> <div class="myclass2"> <p>result :<br>rgba(208, 216, 193, 0.75)</p> </div> </body> </html>
接下來,創建文件 style.less 。
style.less
.myclass1{ height:100px; width:100px; padding: 30px 0px 0px 25px; background-color: rgba(66, 97, 5, 0.5); color:white; } .myclass2{ height:100px; width:100px; padding: 30px 0px 0px 25px; background-color: tint(rgba(66, 97, 5, 0.5),50%); color:white; }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來執行上面的命令,它將用下面的代碼自動創建style.css 文件:
style.css
.myclass1 { height: 100px; width: 100px; padding: 30px 0px 0px 25px; background-color: rgba(66, 97, 5, 0.5); color: white; } .myclass2 { height: 100px; width: 100px; padding: 30px 0px 0px 25px; background-color: rgba(208, 216, 193, 0.75); color: white; }
輸出
讓我們執行以下步驟,看看上面的代碼如何工作:
將以上html代碼保存在tint.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。