scss 根据SASS列表的索引删除了SASS列表的项目(模仿原生map-remove函数的行为)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 根据SASS列表的索引删除了SASS列表的项目(模仿原生map-remove函数的行为)相关的知识,希望对你有一定的参考价值。

/// list-remove
/// Remove an item from a list
/// @param $list - A SASS list
/// @param $index - The list index to remove
/// @returns A SASS list
/// @author Jake Wilson <jake.e.wilson@gmail.com>
@function list-remove($list, $index) {
  $newList: ();
  @for $i from 1 through length($list) {
    @if $i != $index {
      $newList: append($newList, nth($list,$i), 'space');
    }
  }
  @return $newList;
}

以上是关于scss 根据SASS列表的索引删除了SASS列表的项目(模仿原生map-remove函数的行为)的主要内容,如果未能解决你的问题,请参考以下文章

scss Sass列表

scss SASS:图标列表Retina Sprite Loop

scss SASS变量列表,用于帮助管理数字CSS字体粗细值。

如何在 Rgba SASS/SCSS 中显示具有不透明度的 CurrentColor?

scss 品牌颜色的sass索引数组

Bootstrap v4 网格大小/Sass 列表