@which
$types: 4;
$type-width: 20px;
@while $types > 0 {
.while-#{$types} {
width: $type-width + $types;
}
$types: $types - 1;
}
@for $i from 4 through 1{
.while-#{$i}{
width:$type-width + $i
}
}
$types: 4;
$type-width: 20px;
@while $types > 0 {
.while-#{$types} {
width: $type-width + $types;
}
$types: $types - 1;
}
@for $i from 4 through 1{
.while-#{$i}{
width:$type-width + $i
}
}
2016-12-26
$list: archer saber lancer caster rider;
@each $eachTest in $list{
.nav.#{$eachTest}{
width: 10px;
background-image: url("imagers/#{$eachTest}.png");
}
}
@each $eachTest in $list{
.nav.#{$eachTest}{
width: 10px;
background-image: url("imagers/#{$eachTest}.png");
}
}
2016-12-19
@mixin ifTest($test:true,$test2:true){
@if $test{
width: $test;
}
@else if $test2{
height: $test2;
}
@else{
width: 50px;
height: 50px;
}
}
.boxs{
@include ifTest(10px)
}
.boxs2{
@include ifTest(false,20px)
}
.boxs3{
@include ifTest(false,false)
}
@if $test{
width: $test;
}
@else if $test2{
height: $test2;
}
@else{
width: 50px;
height: 50px;
}
}
.boxs{
@include ifTest(10px)
}
.boxs2{
@include ifTest(false,20px)
}
.boxs3{
@include ifTest(false,false)
}
2016-12-19
#main {
@import "example";
}
编译不通过。是因为这里的"example"是个scss文件,类名继承应该用@extend .example
@import "example";
}
编译不通过。是因为这里的"example"是个scss文件,类名继承应该用@extend .example
2016-12-18
如果你有一个 SCSS 或 Sass 文件需要引入, 但是你又不希望它被编译为一个 CSS 文件, 这时,你就可以在文件名前面加一个下划线,就能避免被编译。
就是带下划线前缀的scss文件不会编译成css文件,在koala中编译时会没有该文件;
但可以在其他scss中@import该文件后编译,而且不用加下划线前缀.
就是带下划线前缀的scss文件不会编译成css文件,在koala中编译时会没有该文件;
但可以在其他scss中@import该文件后编译,而且不用加下划线前缀.
2016-12-18