less的安裝配置
創(chuàng)新互聯(lián)專(zhuān)注為客戶(hù)提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都做網(wǎng)站、成都網(wǎng)站建設(shè)、靜寧網(wǎng)絡(luò)推廣、微信小程序定制開(kāi)發(fā)、靜寧網(wǎng)絡(luò)營(yíng)銷(xiāo)、靜寧企業(yè)策劃、靜寧品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪(fǎng)、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供靜寧建站搭建服務(wù),24小時(shí)服務(wù)熱線(xiàn):18980820575,官方網(wǎng)址:jinyejixie.com
安裝react-app-rewired,react-app-rewire-less,babel-plugin-import插件
執(zhí)行命令:
npm install react-app-rewired --save-dev npm install react-app-rewire-less --save-dev npm install babel-plugin-import --save-dev
配置package.json文件 找到scripts屬性,修改start的值為react-app-rewired start,如下圖:
根目錄下創(chuàng)建config-overrides.js文件
const { injectBabelPlugin } = require('react-app-rewired'); const rewireLess = require('react-app-rewire-less'); module.exports = function override(config, env) { config = rewireLess.withLoaderOptions({ modifyVars: { "@primary-color": "#9F35FF" }, })(config, env); return config; }
less的基本使用
LESS 做為 CSS 的一種形式的擴(kuò)展,它并沒(méi)有閹割 CSS 的功能,而是在現(xiàn)有的 CSS 語(yǔ)法上,添加了很多額外的功能,了解完安裝過(guò)程,接下來(lái)看看less具體怎么使用
變量
在less中利用@符號(hào)進(jìn)行變量的定義,很容易理解:復(fù)制代碼
@nice-blue: #5B83AD; @light-blue: @nice-blue + #111; #header { color: @light-blue; }
以上代碼編譯后輸出為:
#header { color: #6c94be; }
less中支持變量名定義為變量,例如:
@fnord: "I am fnord."; @var: 'fnord'; content: @@var;
解析后:
content: "I am fnord.";
注意: LESS 中的變量為完全的 ‘常量' ,所以只能定義一次
混合
在 LESS 中我們可以定義一些通用的屬性集為一個(gè)class,然后在另一個(gè)class中去調(diào)用這些屬性. 下面有這樣一個(gè)class:
.bordered { border-top: dotted 1px black; border-bottom: solid 2px black; }
那如果我們現(xiàn)在需要在其他class中引入那些通用的屬性集,那么我們只需要在任何class中像下面這樣調(diào)用就可以:
#menu a { color: #111; .bordered; } .post a { color: red; .bordered; }
.bordered class里面的屬性樣式都會(huì)在 #menu a 和 .post a 中體現(xiàn)出來(lái):
#menu a { color: #111; border-top: dotted 1px black; border-bottom: solid 2px black; } .post a { color: red; border-top: dotted 1px black; border-bottom: solid 2px black; }
任何 CSS class, id 或者 元素 屬性集都可以以同樣的方式引入.
帶參數(shù)混合
在 LESS 中,你還可以像函數(shù)一樣定義一個(gè)帶參數(shù)的屬性集合:
.border-radius (@radius) { border-radius: @radius; -moz-border-radius: @radius; -webkit-border-radius: @radius; }
然后在其他class中像這樣調(diào)用它:
#header { .border-radius(4px); } .button { .border-radius(6px); }
我們還可以像這樣給參數(shù)設(shè)置默認(rèn)值:
.border-radius (@radius: 5px) { border-radius: @radius; -moz-border-radius: @radius; -webkit-border-radius: @radius; }
所以現(xiàn)在如果我們像這樣調(diào)用它的話(huà):
#header { .border-radius; }
radius的值就會(huì)是5px. 你也可以定義不帶參數(shù)屬性集合,如果你想隱藏這個(gè)屬性集合,不讓它暴露到CSS中去,但是你還想在其他的屬性集合中引用,你會(huì)發(fā)現(xiàn)這個(gè)方法非常的好用:
.wrap () { text-wrap: wrap; white-space: pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; } pre { .wrap }
輸出:
pre { text-wrap: wrap; white-space: pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; }
@arguments 變量
@arguments 包含了所有傳遞進(jìn)來(lái)的參數(shù). 如果你不想單獨(dú)處理每一個(gè)參數(shù)的話(huà)就可以像這樣寫(xiě):
.box-shadow (@x: 0, @y: 0, @blur: 1px, @color: #000) { box-shadow: @arguments; -moz-box-shadow: @arguments; -webkit-box-shadow: @arguments; } .box-shadow(2px, 5px);
將會(huì)輸出:
box-shadow: 2px 5px 1px #000; -moz-box-shadow: 2px 5px 1px #000; -webkit-box-shadow: 2px 5px 1px #000;
模式匹配和導(dǎo)引表達(dá)式
有些情況下,我們想根據(jù)傳入的參數(shù)來(lái)改變混合的默認(rèn)呈現(xiàn),比如下面這個(gè)例子:
.mixin (@s, @color) { ... } .class { .mixin(@switch, #888); }
如果想讓 .mixin 根據(jù)不同的 @switch 值而表現(xiàn)各異,如下這般設(shè)置:
.mixin (dark, @color) { color: darken(@color, 10%); } .mixin (light, @color) { color: lighten(@color, 10%); } .mixin (@_, @color) { display: block; }
現(xiàn)在,如果運(yùn)行:
@switch: light; .class { .mixin(@switch, #888); }
就會(huì)得到下列CSS:
.class { color: #a2a2a2; display: block; }
如上, .mixin 就會(huì)得到傳入顏色的淺色。如果 @switch 設(shè)為dark,就會(huì)得到深色. 具體實(shí)現(xiàn)如下:
第一個(gè)混合定義并未被匹配,因?yàn)樗唤邮?dark 做為首參 第二個(gè)混合定義被成功匹配,因?yàn)樗唤邮?light 第三個(gè)混合定義被成功匹配,因?yàn)樗邮苋我庵?/p>
只有被匹配的混合才會(huì)被使用。變量可以匹配任意的傳入值,而變量以外的固定值就僅僅匹配與其相等的傳入值。 我們也可以匹配多個(gè)參數(shù):
.mixin (@a) { color: @a; } .mixin (@a, @b) { color: fade(@a, @b); }
當(dāng)我們想根據(jù)表達(dá)式進(jìn)行匹配,而非根據(jù)值和參數(shù)匹配時(shí),導(dǎo)引就顯得非常有用。如果你對(duì)函數(shù)式編程非常熟悉,那么你很可能已經(jīng)使用過(guò)導(dǎo)引。
為了盡可能地保留CSS的可聲明性,LESS通過(guò)導(dǎo)引混合而非if/else語(yǔ)句來(lái)實(shí)現(xiàn)條件判斷,因?yàn)榍罢咭言贎media query特性中被定義。 以此例做為開(kāi)始:
.mixin (@a) when (lightness(@a) >= 50%) { background-color: black; } .mixin (@a) when (lightness(@a) < 50%) { background-color: white; } .mixin (@a) { color: @a; }
when關(guān)鍵字用以定義一個(gè)導(dǎo)引序列(此例只有一個(gè)導(dǎo)引)。接下來(lái)我們運(yùn)行下列代碼:
.class1 { .mixin(#ddd) } .class2 { .mixin(#555) }
就會(huì)得到:
.class1 { background-color: black; color: #ddd; } .class2 { background-color: white; color: #555; }
導(dǎo)引中可用的全部比較運(yùn)算有: > >= = =< <。此外,關(guān)鍵字 true 只表示布爾真值,下面兩個(gè)混合是相同的:
.truth (@a) when (@a) { ... } .truth (@a) when (@a = true) { ... }
除去關(guān)鍵字true以外的值都被視示布爾假:
.class { .truth(40); // Will not match any of the above definitions. }
導(dǎo)引序列使用逗號(hào)‘ , '—分割,當(dāng)且僅當(dāng)所有條件都符合時(shí),才會(huì)被視為匹配成功。
.mixin (@a) when (@a > 10), (@a < -10) { ... }
導(dǎo)引可以無(wú)參數(shù),也可以對(duì)參數(shù)進(jìn)行比較運(yùn)算:
@media: mobile; .mixin (@a) when (@media = mobile) { ... } .mixin (@a) when (@media = desktop) { ... } .max (@a, @b) when (@a > @b) { width: @a } .max (@a, @b) when (@a < @b) { width: @b }
最后,如果想基于值的類(lèi)型進(jìn)行匹配,我們就可以使用is*函式:
.mixin (@a, @b: 0) when (isnumber(@b)) { ... } .mixin (@a, @b: black) when (iscolor(@b)) { ... }
下面就是常見(jiàn)的檢測(cè)函式:
如果你想判斷一個(gè)值是純數(shù)字,還是某個(gè)單位量,可以使用下列函式:
最后再補(bǔ)充一點(diǎn),在導(dǎo)引序列中可以使用and關(guān)鍵字實(shí)現(xiàn)與條件:
.mixin (@a) when (isnumber(@a)) and (@a > 0) { ... }
使用not關(guān)鍵字實(shí)現(xiàn)或條件
.mixin (@b) when not (@b > 0) { ... }
嵌套規(guī)則
LESS 可以讓我們以嵌套的方式編寫(xiě)層疊樣式. 讓我們先看下下面這段 CSS:
#header { color: black; } #header .navigation { font-size: 12px; } #header .logo { width: 300px; } #header .logo:hover { text-decoration: none; }
在 LESS 中, 我們就可以這樣寫(xiě):
#header { color: black; .navigation { font-size: 12px; } .logo { width: 300px; &:hover { text-decoration: none } } }
或者這樣寫(xiě):
#header { color: black; .navigation { font-size: 12px } .logo { width: 300px; &:hover { text-decoration: none } } }
代碼更簡(jiǎn)潔了,而且感覺(jué)跟 DOM 結(jié)構(gòu)格式有點(diǎn)像. 注意 & 符號(hào)的使用—如果你想寫(xiě)串聯(lián)選擇器,而不是寫(xiě)后代選擇器,就可以用到 & 了. 這點(diǎn)對(duì)偽類(lèi)尤其有用如 :hover 和 :focus 例如:
.bordered { &.float { float: left; } .top { margin: 5px; } }
會(huì)輸出
.bordered.float { float: left; } .bordered .top { margin: 5px; }
運(yùn)算
任何數(shù)字、顏色或者變量都可以參與運(yùn)算. 來(lái)看一組例子:
@base: 5%; @filler: @base * 2; @other: @base + @filler; color: #888 / 4; background-color: @base-color + #111; height: 100% / 2 + @filler;
LESS 的運(yùn)算已經(jīng)超出了我們的期望,它能夠分辨出顏色和單位。如果像下面這樣單位運(yùn)算的話(huà):
@var: 1px + 5;
LESS 會(huì)輸出 6px 括號(hào)也同樣允許使用:
width: (@var + 5) * 2;
并且可以在復(fù)合屬性中進(jìn)行運(yùn)算:
border: (@width * 2) solid black
命名空間
有時(shí)候,你可能為了更好組織CSS或者單純是為了更好的封裝,將一些變量或者混合模塊打包起來(lái), 你可以像下面這 樣在 #bundle 中定義一些屬性集之后可以重復(fù)使用:
#bundle { .button () { display: block; border: 1px solid black; background-color: grey; &:hover { background-color: white } } .tab { ... } .citation { ... } }
你只需要在 #header a 中像這樣引入 .button :
#header a { color: orange; #bundle > .button; }
字符串插值
變量可以用類(lèi)似ruby和php的方式嵌入到字符串中,像 @{name} 這樣的結(jié)構(gòu):
@base-url: "http://assets.fnord.com"; background-image: url("@{base-url}/images/bg.png");
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)頁(yè)標(biāo)題:詳解在React項(xiàng)目中安裝并使用Less(用法總結(jié))
轉(zhuǎn)載來(lái)源:http://jinyejixie.com/article26/iicicg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、動(dòng)態(tài)網(wǎng)站、靜態(tài)網(wǎng)站、Google、網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)