Less Fadein增加不透明度
描述
它增加了所選元素的不透明度。它有以下參數(shù):
color:它代表顏色對(duì)象。
amount:它包含0 - 100%之間的百分比。
方法:它是可選參數(shù),通過(guò)將其設(shè)置為相對(duì),用于相對(duì)于當(dāng)前值進(jìn)行調(diào)整。
例子
下面的例子演示了在LESS文件中使用淡入淡出顏色操作:
<html>
<head>
<title>Fadein</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h2>Example of Fadein 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(66, 97, 5, 0.6)</p>
</div>
</body>
</html>
接下來(lái),創(chuàng)建文件 style.less 。
style.less
.myclass1{
height:100px;
width:100px;
padding: 30px 0px 0px 25px;
background-color: hsla(80, 90%, 20%,0.5);
color:white;
}
.myclass2{
height:100px;
width:100px;
padding: 30px 0px 0px 25px;
background-color: fadein(hsla(80, 90%, 20%,0.5), 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: rgba(66, 97, 5, 0.5);
color: white;
}
.myclass2 {
height: 100px;
width: 100px;
padding: 30px 0px 0px 25px;
background-color: rgba(66, 97, 5, 0.6);
color: white;
}
輸出
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將以上html代碼保存在fadein.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。