玩偶lpa
2017-04-28 11:10
$social-colors: (
dribble: #ea4c89,
facebook: #3b5998,
github: #171515,
google: #db4437,
twitter: #55acee
);
@function colors($color){
@if not map-has-key($social-colors,$color){
@warn "No color found for `#{$color}` in $social-colors map. Property omitted.";
}
@return map-get($social-colors,$color);
}
@each $social-network,$social-color in $social-colors {
.btn-#{$social-network} {
color: colors($social-network);
}
}
这里的第二个变量$social-colo有啥用?删掉编译出来的css没样式。
key, value
$social-color就是$social-colors值列表里面的值,$social-network是$social-colors值列表里面的键,
Sass进阶篇
46635 学习 · 97 问题
相似问题