从下一个数组入口进入@each vars内的SCSS Mixin

时间:2018-07-20 16:19:20

标签: css sass styles stylesheet scss-mixins

我想提高前端的质量标准,今天为背景图像部分构建一个小帮手:

.html

<div></div>

.scss

@mixin backgroundImage($path: '/assets/images', $fileName: null, $supports: null, $fileType: '.jpg', $unitType: 'px', $startFrom: 0) {
    @each $res in $supports {
        @media only screen and (min-width: $startFrom / 720 / 1280 / 1920 / 2560 / Last not need) and (max-width: $res#{$unitType}) {
            background-image: url("#{$path}#{$fileName}-#{$res}#{$fileType}");
        }
    }
}

div {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%, 50%;
    background-color: navajowhite;
    @include backgroundImage($fileName: 'background', $supports: (720, 1280, 1920, 2560, 3840), $startFrom: 480);
}

我试图创建一个堆栈闪电,但后来意识到,我无法上载图像。因此,如果您需要演示进行测试,请在root用户中创建index.html将是名为assets/images/的文件夹,然后在其中放置5个名为background-720background-1280等的文件... < / p>

好吧,我需要在这里:(min-width: $startFrom / 720 / 1280 / 1920 / 2560 / Last not need)来获取每个@each中最后一个$supports的{​​{1}}的数目。就在第一个@each中,我需要使用@each

我知道它令人困惑。但是我以前从未写过复杂的SCSS Mixins。我希望有人可以帮助我。

2 个答案:

答案 0 :(得分:2)

我认为您唯一的问题是您在路径之间缺少斜线,因为它解析为/assets/imagesbackground-$sz.jpg,我也不认为您需要$startFrom,因为您可以添加到$supports数组中。

这是我将其更改为的方法,它似乎运行得很好:

@mixin backgroundImage($path: '@/assets/images', $fileType: '.jpg', $unitType: 'px', $fileName: null, $supports: null, $startFrom: 0) {
  @each $size in $supports {
    @media only screen and (min-width: $startFrom#{$unitType}) and (max-width: $size#{$unitType}) {
      background-image: url("#{$path}/#{$fileName}-#{$size}#{$fileType}");
    }
  }
}

答案 1 :(得分:0)

好的,我现在知道了...最后的工作代码:

@mixin resBgImg($path: '/assets/images/', $fileName: null, $resolutions: null, $fileType: '.jpg', $unitType: 'px', $startFrom: 0)
    @for $i from 1 through length($resolutions)
        $min: $startFrom
        @if $i > 1
            $min: nth($resolutions, $i - 1)
        $max: nth($resolutions, $i)
        @if $i == length($resolutions)
            @media only screen and (min-width: $min + 1+$unitType)
                background-image: url("#{$path}#{$fileName}-#{$max}#{$fileType}")
        @else
            @media only screen and (min-width: $min + if($i > 1, 1, 0)+$unitType) and (max-width: $max+$unitType)
                background-image: url("#{$path}#{$fileName}-#{$max}#{$fileType}")