W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
本節(jié)介紹了 Less 中函數(shù)的使用。
LESS 映射具有值操作的 JavaScript 代碼,并使用預(yù)定義的函數(shù)來操縱樣式表中的 HTML 元素。 它提供了操作顏色的幾個功能,如圓函數(shù),floor 函數(shù),ceil 函數(shù),百分比函數(shù)等。
下面的例子演示了在 LESS 文件中使用函數(shù):
<html>
<head>
<title>Less Functions</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Example using Functions</h1>
<p class="mycolor">LESS enables customizable, manageable and reusable style sheet for web site.</p>
</body>
</html>
接下來,創(chuàng)建文件 style.less 。
@color: #FF8000;
@width:1.0;
.mycolor{
color: @color;
width: percentage(@width);
}
您可以使用以下命令將 style.less 文件編譯為 style.css :
lessc style.less style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動創(chuàng)建 style.css 文件:
.mycolor {
color: #FF8000;
width: 100%;
}
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上述 html 代碼保存在 functions.html 文件中。
在瀏覽器中打開此 HTML 文件,將顯示如下輸出。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: