循环内的SASS插值将增量转换为字符串

时间:2018-10-23 16:24:37

标签: css sass

我要创建一个SASS循环来创建一些实用程序类:

@for $i from 1 through 10 {
    &border-white-#{($i * 10)} {
        border-color: color($color-white, #{$i / 10});
    }
}

此颜色功能设置RGBA alpha值,但SASS当前表示alpha值必须为整数,但提供了字符串。

检查值的类型时,它会显示字符串。

如何将这个插值转换为整数?

2 个答案:

答案 0 :(得分:3)

删除“ color($ color-white,#{$ i / 10});” 中的#{}。那时不需要,因为您没有将该值输出到本地CSS函数。我也建议使用sassmeister.com进行Sass快速调试。

此答案中的假设:

  • Color函数是您自定义的sass函数,它使用Sass的RGBA函数。

答案 1 :(得分:0)

我有以下函数应将字符串转换为整数。该函数似乎来自:https://codepen.io/corysimmons/pen/mVLVbo。但是,它是用scss编写的,因此您可能仍需要修复一些问题:

@function number( $value ) {
    @if type-of( $value ) == 'number' {
        @return $value;
    } @else if type-of( $value ) != 'string' {
        $_: log( 'Value for `to-number` should be a number or a string.' );
    }

    $result: 0;
    $digits: 0;
    $minus: str-slice( $value, 1, 1 ) == '-';
    $numbers: ( '0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9 );

    @for $i from if( $minus, 2, 1 ) through str-length( $value ) {
        $character: str-slice( $value, $i, $i) ;

        @if not ( index( map-keys( $numbers ), $character ) or $character == '.') {
            @return to-length( if( $minus, -$result, $result ), str-slice( $value, $i ) )
        }

        @if $character == '.' {
            $digits: 1;
        } @else if $digits == 0 {
            $result: $result * 10 + map-get( $numbers, $character );
        } @else {
            $digits: $digits * 10;
            $result: $result + map-get( $numbers, $character ) / $digits;
        }
    }

    @return if( $minus, -$result, $result );
}

但是如前所述。您已经在使用整数,但是将其强制转换为字符串#{$i / 10}

只需尝试重复您已经完成的工作即可。

&border-white-#{($i * 10)} {
     border-color: color($color-white, ($i / 10));
}

然而,与此有关的问题可能是RGBA()期望使用.标记的值,例如:rgba(255, 255, 255, .5)