您好,登錄后才能下訂單哦!
如何安裝與使用Less?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
node.js是一個(gè)前端的框架 自帶一個(gè)包管理工具npm
在命令行檢驗(yàn)是否安裝成功
切換到項(xiàng)目目錄,初始化了一個(gè)package.json文件
安裝與卸載jQuery包(例子) 安裝
卸載
安裝淘寶鏡像
2. 安裝less
試一試:
test.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="style.css" rel="external nofollow" /> </head> <body> <div id="box"> <ul> <li>你好</li> <li>hello</li> </ul> </div> </body> </html>
style.less
#box{ width:200px; height:200px; background-color:blue; ul{ color:white; li{ line-height:50px; } } }
在命令行中輸入lessc xxx.less xxx.css,
如下:
用瀏覽器打開(kāi)test.html 看一下效果吧3. less 的基本用法
https://less.bootcss.com/
變量
@red:red; @w:200px; #big{ width:@w; height:@w; background-color:@red; #small{ width:@w; height:@w; background-color:@red; } } p{ color:@red; }
混合
.bt{ width:200px; height:200px; border-top:2px solid red; background-color:red; } #big{ .bt; #small{ .bt; } }
?嵌套
#box{ width:100%; height:60px; background-color:#ccc; h4{ width:100%; height:20px; background-color:yellow; } ul{ list-style:none; li{ height:40px; line-height:40px; float:left; padding:0 10px; } } }
?運(yùn)算
@color:#333; #box{ width:100%; height:60px; background-color:@color+#111; } ?calc() @var:50vh/2; #box{ width:calc(50% + (@var - 20px)); }
?固定函數(shù)
@base:#f04615; @width:0.5; #box{ width:percentage(@width); color:saturate(@base,5%); background-color:spin(lighten(@base,25%),8); }
?注釋
//單行注釋// /*多行 注釋*/ ?引入其他less文件 @import "other.less";
看完上述內(nèi)容,你們掌握如何安裝與使用Less的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。