使用for循环在scss中应用标题大小的递增标题和变量

时间:2019-04-11 20:38:41

标签: sass scss-mixins

我试图遍历所有6个标题,并通过6个font-size变量的mixin应用font-size。但是我一直得到一个未定义的变量。它无法识别可变增量。我是在做错什么,还是根本不可能?无论如何,在我脑海中似乎很简单他是sassmeister的链接感谢您的帮助或见识

//变量

$font-h1: 40px;
$font-h2: 28px;
$font-h3: 24px;
$font-h4: 20px;
$font-h5: 18px;
$font-h6: 14px;

// Mixin

@mixin font-size($size) {
  font-size: $size;  
}

@for $i from 1 through 6 {
  h#{$i} {
    // font-size: #{$i};
    @include font-size( $font-h#{$i} );
  }
}

//预期中

h1 {
    font-size: 40px
} 
etc...

//实际输出

Undefined variable: "$font-h".

2 个答案:

答案 0 :(得分:1)

我会选择 map ,因为它倾向于更灵活-例如:

$font-size:(
    h1 : 40px,
    h2 : 28px,
    h3 : 24px,
    h4 : 20px,
    h5 : 18px,
    h6 : 14px
);

@each $header, $size in $font-size {
    #{$header}{ font-size: $size; }
} 




//  Bonus 
//  If you need to apply a font-size to another 
//  element you can get the size using map-get 
.class {
    font-size: map-get($font-size, h3);
}


//  Function and mixin to handle the above
@function font-size($key){
    @return map-get($font-size, $key);
}
@mixin font-size($key){
    font-size: font-size($key); 
}


.class {
    font-size: font-size(h3);  // use it as function
    @include font-size(h3);    // use it as include
}

答案 1 :(得分:0)

您可以尝试重构变量并使用数组或使用映射fn。

例如:

  $font-h: 40px, 28px, 24px, 20px, 18px, 14px;

  @mixin font-size($size) {
    font-size: $size;  
  }

  @for $i from 1 through length($font-h) {
  $font: nth($font-h, $i);

  h#{$i} {
      @include font-size($font);
    }
  }