Less Fade設(shè)置透明度

2018-01-13 17:51 更新

描述

它用于設(shè)置所選元素的顏色的透明度。 它有以下參數(shù):

  • color :它代表顏色對象。

  • amount :它包含0 - 100%之間的百分比。


例子

以下示例演示如何在LESS文件中使用淡入淡出顏色操作:

<html>
<head>
   <title>Fade</title>
   <link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
   <h2>Example of Fade Color Operation</h2>
   <div class="myclass1">
   <p>color :<br>#426105</p>
   </div><br>

   <div class="myclass2">
      <p>result :<br>rgba(66, 97, 5, 0.1)</p>
   </div>
</body>
</html>


接下來,創(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: fade(hsl(80, 90%, 20%), 10%);
   color:black;
}


您可以使用以下命令將 style.less 編譯為 style.css :

lessc style.less style.css


接下來執(zhí)行上面的命令,它將用下面的代碼自動創(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: rgba(66, 97, 5, 0.1);
  color: black;
}


輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上述代碼保存在 fade.html 文件中。

  • 在瀏覽器中打開此HTML文件,將顯示如下輸出。


輸出

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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號