scss 萨斯で连想配列っぽいものサンプル

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 萨斯で连想配列っぽいものサンプル相关的知识,希望对你有一定的参考价值。

// navbar name list
$navNameList: name01, name02, name03;
// width list
$navSizeList: 68, 92, 96;

// making class for each name in navNameList
@for $i from 1 through length($navNameList) {
  $nav_name: nth($navNameList, $i);
  $nav_size: index($navNameList, $nav_name);
  $i: $i - 1;
  .nav_#{$nav_name} {
    background-position: 0 -30px * $i;
    width: #{nth($navSizeList, $nav_size)}px;
  }
}

以上是关于scss 萨斯で连想配列っぽいものサンプル的主要内容,如果未能解决你的问题,请参考以下文章

csharp Dapper .NETのサンプル

csharp 【WPF】DataGrid中のサンプル

xml 【WPF】的TreeViewのサンプル。

xml WPFの的BackgroundWorkerのサンプル

csharp MEF属性ベースのサンプル

css メディアクエリのサンプル