关于scss变量拼接问题

发布于 2022-09-06 19:38:37 字数 342 浏览 20 评论 0

1.开发中遇到了关于变量拼接的问题:在scss中使用for循环展示gulp生成的雪碧图。
2.像这样:

@for $i from 0 through 88 {
  .emotion-#{ $i } {
    @include sprite();
    display: inline-block;
  }
}

3.我的问题是在sprite中的参数写的是$emotion-1,$emotion-2,$emotion-3......的格式,所以需要进行拼接,试过$emotion-#{$i}还有其他各种方法,只能查到参数是一个纯变量的例子,但是没有拼接的例子,希望大神指教

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

狠疯拽 2022-09-13 19:38:38

没明白。。。

叶落知秋 2022-09-13 19:38:38

#{$animal}表示变量,后面直接连接想要的字符串

//sass style
//-------------------------------
$animal-list: puma, sea-slug, egret, salamander;
@each $animal in $animal-list {
  .#{$animal}-icon {
    background-image: url('/images/#{$animal}.png');
  }
}

//css style
//-------------------------------
.puma-icon {
  background-image: url('/images/puma.png'); 
}
.sea-slug-icon {
  background-image: url('/images/sea-slug.png'); 
}
.egret-icon {
  background-image: url('/images/egret.png'); 
}
.salamander-icon {
  background-image: url('/images/salamander.png'); 
}

https://www.w3cplus.com/sassg...

知足的幸福 2022-09-13 19:38:37
$emotion-map: (
    0: $data0,
    1: $data1,
    // ...
);
@for $i from 0 through 88 {
  .emotion-#{$i} {
    @include sprite(map-get($emotion-map, $i}));
    display: inline-block;
  }
}

像这样吗?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文