Less Spin旋轉(zhuǎn)角度

2018-01-13 18:06 更新

描述

它用于旋轉(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文件,將顯示如下輸出。


輸出

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)