Less Spin旋轉(zhuǎn)角度
描述
它用于旋轉(zhuǎn)所選元素的顏色的角度。它有以下參數(shù):
color:它代表顏色對(duì)象。
amount:它包含0 - 100%之間的百分比。
例子
下面的例子演示了在LESS文件中使用旋轉(zhuǎn)顏色操作:
<html> <head> <title>Spin</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <h2>Example of Spin Color Operation</h2> <div class="myclass1"> <p>color :<br>#426105</p> </div><br> <div class="myclass2"> <p>result :<br>#526105</p> </div> </body> </html>
接下來(lái),創(chuàng)建文件style.less。
style.less
.myclass1{ height:100px; width:100px; padding: 30px 0px 0px 25px; background-color: hsl(80, 90%, 20%); color:white; } .myclass2{ height:100px; width:100px; padding: 30px 0px 0px 25px; background-color: spin(hsl(80, 90%, 20%), -10); color:white; }
您可以使用以下命令將style.less編譯為style.css :
lessc style.less style.css
接下來(lái)執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建style.css 文件:
style.css
.myclass1 { height: 100px; width: 100px; padding: 30px 0px 0px 25px; background-color: #426105; color: white; } .myclass2 { height: 100px; width: 100px; padding: 30px 0px 0px 25px; background-color: #526105; color: white; }
輸出
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將以上html代碼保存在spin.html文件中。
在瀏覽器中打開(kāi)此HTML文件,將顯示如下輸出。