1.自定義變量
$color:pink;
.test1{
background-color:$color;
}
通過編譯工具編譯出來后
.test1{
background-color:pink;
}
2.插入一個變量
$right:right;
.test2{
border-#{$right}:1px solid #000;
}
3.子元素書寫
.text3{
.text33{
border:1px solid;
}
}
4.樣式的加減乘除
$paramer:3;
.text4{
height:(1px+3px);
width: (96px/6);
right: $paramer*4;
}
5.繼承
.class5{
border:1px solid red;
}
.class5E{
@extend .class5;
font-size:20px;
}
6.代碼塊的復(fù)用
@mixin text6 {
height:50px;
left:20px;
}
.text6M{
@include text6
}
//這里的mixin就是定義一個可以復(fù)用的代碼段狐血,當然我們也可以給它傳遞一個參數(shù),就像這樣一樣:
@mixin text66($height){
height:$heigth;
left:20px;
}
.text6N{
@include text66(100px);
}
7.if語法易核,通過對if的判斷來決定使用那一套樣式
.text7{
@if 1 +2 == 3 {
border:1px solid ;
}
@if 5 < 3 {
border:2px dsahed red;
}
}
當然匈织,我們都知道if一般是要和else配合的,所以我們也可以這樣寫
.test77{
@if lightness($color) > 30%{
background-color:#fff;
}@else{
background:#0ff;
}
}
這里的lightness是一個scss顏色函數(shù)牡直,$color指向之前定義的值缀匕。
8.循環(huán)語法,包括最常見的三種循環(huán)方法碰逸,for,while,each
//for 循環(huán)
@for $i from 1 to 5 {
.item-#{$i} {
border:#{$i}px solid;
}
}
//while 循環(huán)
$m:8;
@while $m > 0 {
.items-#{$m} {
width:2em*$m;
}
$m:$m - 2 ;
}
//這里可以對$m進行運算 讓它每次都減去2
//each 語法
@each $img in q,w,e,r {
.#{$img} {
background-image:url('#{$img}.png')
}
}
9.函數(shù)語法
@function double ($number){
@return $number*2;
}
.text9{
font-size:double(20px);
}
10.import導(dǎo)入語法
@import 'other.scss'
這樣就在你現(xiàn)在的scss中導(dǎo)入了other.scss編寫的scss