很容易理解:php
@nice-blue: #5B83AD; @light-blue: @nice-blue + #111; #header { color: @light-blue; }
輸出:css
#header { color: #6c94be; }
甚至能夠用變量名定義爲變量:web
@fnord: "I am fnord.";
@var: 'fnord';
content: @@var;
解析後:編程
content: "I am fnord.";
請注意 LESS 中的變量爲徹底的 ‘常量’ ,因此只能定義一次.ruby
在 LESS 中咱們能夠定義一些通用的屬性集爲一個class,而後在另外一個class中去調用這些屬性. 下面有這樣一個class:less
.bordered { border-top: dotted 1px black; border-bottom: solid 2px black; }
那若是咱們如今須要在其餘class中引入那些通用的屬性集,那麼咱們只須要在任何class中像下面這樣調用就能夠了:編程語言
#menu a { color: #111; .bordered; } .post a { color: red; .bordered; }
.bordered
class裏面的屬性樣式都會在 #menu a
和 .post a
中體現出來:函數式編程
#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 或者 元素 屬性集均可以以一樣的方式引入.函數
在 LESS 中,你還能夠像函數同樣定義一個帶參數的屬性集合:post
.border-radius (@radius) { border-radius: @radius; -moz-border-radius: @radius; -webkit-border-radius: @radius; }
而後在其餘class中像這樣調用它:
#header { .border-radius(4px); } .button { .border-radius(6px); }
咱們還能夠像這樣給參數設置默認值:
.border-radius (@radius: 5px) { border-radius: @radius; -moz-border-radius: @radius; -webkit-border-radius: @radius; }
因此如今若是咱們像這樣調用它的話:
#header { .border-radius; }
radius的值就會是5px.
你也能夠定義不帶參數屬性集合,若是你想隱藏這個屬性集合,不讓它暴露到CSS中去,可是你還想在其餘的屬性集合中引用,你會發現這個方法很是的好用:
.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
包含了全部傳遞進來的參數. 若是你不想單獨處理每個參數的話就能夠像這樣寫:
.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);
將會輸出:
box-shadow: 2px 5px 1px #000;
-moz-box-shadow: 2px 5px 1px #000;
-webkit-box-shadow: 2px 5px 1px #000;
有些狀況下,咱們想根據傳入的參數來改變混合的默認呈現,好比下面這個例子:
.mixin (@s, @color) { ... } .class { .mixin(@switch, #888); }
若是想讓.mixin
根據不一樣的@switch
值而表現各異,以下這般設置:
.mixin (dark, @color) { color: darken(@color, 10%); } .mixin (light, @color) { color: lighten(@color, 10%); } .mixin (@_, @color) { display: block; }
如今,若是運行:
@switch: light; .class { .mixin(@switch, #888); }
就會獲得下列CSS:
.class { color: #a2a2a2; display: block; }
如上,.mixin
就會獲得傳入顏色的淺色。若是@switch
設爲dark,就會獲得深色。
具體實現以下:
dark
作爲首參light
只有被匹配的混合纔會被使用。變量能夠匹配任意的傳入值,而變量之外的固定值就僅僅匹配與其相等的傳入值。
咱們也能夠匹配多個參數:
.mixin (@a) { color: @a; } .mixin (@a, @b) { color: fade(@a, @b); }
Now if we call .mixin
with a single argument, we will get the output of the first definition, but if we call it with two arguments, we will get the second definition, namely @a
faded to @b
.
當咱們想根據表達式進行匹配,而非根據值和參數匹配時,導引就顯得很是有用。若是你對函數式編程很是熟悉,那麼你極可能已經使用過導引。
爲了儘量地保留CSS的可聲明性,LESS經過導引混合而非if/else語句來實現條件判斷,由於前者已在@media query特性中被定義。
以此例作爲開始:
.mixin (@a) when (lightness(@a) >= 50%) { background-color: black; } .mixin (@a) when (lightness(@a) < 50%) { background-color: white; } .mixin (@a) { color: @a; }
when關鍵字用以定義一個導引序列(此例只有一個導引)。接下來咱們運行下列代碼:
.class1 { .mixin(#ddd) } .class2 { .mixin(#555) }
就會獲得:
.class1 { background-color: black; color: #ddd; } .class2 { background-color: white; color: #555; }
導引中可用的所有比較運算有: > >= = =< <
。此外,關鍵字true
只表示布爾真值,下面兩個混合是相同的:
.truth (@a) when (@a) { ... } .truth (@a) when (@a = true) { ... }
除去關鍵字true之外的值都被視示布爾假:
.class { .truth(40); // Will not match any of the above definitions. }
導引序列使用逗號‘,
’—分割,當且僅當全部條件都符合時,纔會被視爲匹配成功。
.mixin (@a) when (@a > 10), (@a < -10) { ... }
導引能夠無參數,也能夠對參數進行比較運算:
@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 }
最後,若是想基於值的類型進行匹配,咱們就可使用is*函式:
.mixin (@a, @b: 0) when (isnumber(@b)) { ... } .mixin (@a, @b: black) when (iscolor(@b)) { ... }
下面就是常見的檢測函式:
iscolor
isnumber
isstring
iskeyword
isurl
若是你想判斷一個值是純數字,仍是某個單位量,可使用下列函式:
ispixel
ispercentage
isem
最後再補充一點,在導引序列中可使用and
關鍵字實現與條件:
.mixin (@a) when (isnumber(@a)) and (@a > 0) { ... }
使用not
關鍵字實現或條件
.mixin (@b) when not (@b > 0) { ... }
LESS 可讓咱們以嵌套的方式編寫層疊樣式. 讓咱們先看下下面這段 CSS:
#header { color: black; } #header .navigation { font-size: 12px; } #header .logo { width: 300px; } #header .logo:hover { text-decoration: none; }
在 LESS 中, 咱們就能夠這樣寫:
#header { color: black; .navigation { font-size: 12px; } .logo { width: 300px; &:hover { text-decoration: none } } }
或者這樣寫:
#header { color: black; .navigation { font-size: 12px } .logo { width: 300px; &:hover { text-decoration: none } } }
代碼更簡潔了,並且感受跟DOM
結構格式有點像.
注意 &
符號的使用—若是你想寫串聯選擇器,而不是寫後代選擇器,就能夠用到&
了. 這點對僞類尤爲有用如:hover
和 :focus
.
例如:
.bordered { &.float { float: left; } .top { margin: 5px; } }
會輸出
.bordered.float { float: left; } .bordered .top { margin: 5px; }
任何數字、顏色或者變量均可以參與運算. 來看一組例子:
@base: 5%;
@filler: @base * 2;
@other: @base + @filler;
color: #888 / 4;
background-color: @base-color + #111;
height: 100% / 2 + @filler;
LESS 的運算已經超出了咱們的指望,它可以分辨出顏色和單位。若是像下面這樣單位運算的話:
@var: 1px + 5;
LESS 會輸出 6px
.
括號也一樣容許使用:
width: (@var + 5) * 2;
而且能夠在複合屬性中進行運算:
border: (@width * 2) solid black;
LESS 提供了一系列的顏色運算函數. 顏色會先被轉化成 HSL 色彩空間, 而後在通道級別操做:
lighten(@color, 10%); // return a color which is 10% *lighter* than @color
darken(@color, 10%); // return a color which is 10% *darker* than @color
saturate(@color, 10%); // return a color 10% *more* saturated than @color
desaturate(@color, 10%); // return a color 10% *less* saturated than @color
fadein(@color, 10%); // return a color 10% *less* transparent than @color
fadeout(@color, 10%); // return a color 10% *more* transparent than @color
fade(@color, 50%); // return @color with 50% transparency
spin(@color, 10); // return a color with a 10 degree larger in hue than @color
spin(@color, -10); // return a color with a 10 degree smaller hue than @color
mix(@color1, @color2); // return a mix of @color1 and @color2
使用起來至關簡單:
@base: #f04615; .class { color: saturate(@base, 5%); background-color: lighten(spin(@base, 8), 25%); }
你還能夠提取顏色信息:
hue(@color); // returns the `hue` channel of @color
saturation(@color); // returns the `saturation` channel of @color
lightness(@color); // returns the 'lightness' channel of @color
若是你想在一種顏色的通道上建立另外一種顏色,這些函數就顯得那麼的好用,例如:
@new: hsl(hue(@old), 45%, 90%);
@new
將會保持 @old
的 色調, 可是具備不一樣的飽和度和亮度.
LESS提供了一組方便的數學函數,你可使用它們處理一些數字類型的值:
round(1.67); // returns `2` ceil(2.4); // returns `3` floor(2.6); // returns `2`
若是你想將一個值轉化爲百分比,你可使用percentage
函數:
percentage(0.5); // returns `50%`
有時候,你可能爲了更好組織CSS或者單純是爲了更好的封裝,將一些變量或者混合模塊打包起來, 你能夠像下面這樣在#bundle
中定義一些屬性集以後能夠重複使用:
#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; }
LESS 中的做用域跟其餘編程語言很是相似,首先會從本地查找變量或者混合模塊,若是沒找到的話會去父級做用域中查找,直到找到爲止.
@var: red; #page { @var: white; #header { color: @var; // white } } #footer { color: @var; // red }
CSS 形式的註釋在 LESS 中是依然保留的:
/* Hello, I'm a CSS-style comment */ .class { color: black }
LESS 一樣也支持雙斜線的註釋, 可是編譯成 CSS 的時候自動過濾掉:
// Hi, I'm a silent comment, I won't show up in your CSS .class { color: white }
你能夠在main文件中經過下面的形勢引入 .less
文件, .less
後綴可帶可不帶:
@import "lib.less";
@import "lib";
若是你想導入一個CSS文件並且不想LESS對它進行處理,只須要使用.css
後綴就能夠:
@import "lib.css";
這樣LESS就會跳過它不去處理它.
變量能夠用相似ruby和php的方式嵌入到字符串中,像@{name}
這樣的結構:
@base-url: "http://assets.fnord.com"; background-image: url("@{base-url}/images/bg.png");
有時候咱們須要輸出一些不正確的CSS語法或者使用一些 LESS不認識的專有語法.
要輸出這樣的值咱們能夠在字符串前加上一個 ~
, 例如:
.class { filter: ~"ms:alwaysHasItsOwnSyntax.For.Stuff()"; }
咱們能夠將要避免編譯的值用 「」包含起來,輸出結果爲:
.class { filter: ms:alwaysHasItsOwnSyntax.For.Stuff(); }
JavaScript 表達式也能夠在.less 文件中使用. 能夠經過反引號的方式使用:
@var: `"hello".toUpperCase() + '!'`;
輸出:
@var: "HELLO!";
注意你也能夠同時使用字符串插值和避免編譯:
@str: "hello"; @var: ~`"@{str}".toUpperCase() + '!'`;
輸出:
@var: HELLO!;
它也能夠訪問JavaScript環境:
@height: `document.body.clientHeight`;
若是你想將一個JavaScript字符串解析成16進制的顏色值, 你可使用 color
函數:
@color: color(`window.colors.baseColor`);
@darkcolor: darken(@color, 10%);