码迷,mamicode.com
首页 > 编程语言 > 详细

scss同时使用两个数组

时间:2019-08-11 17:01:34      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:abs   key   position   col   nbsp   数组   pre   scss   osi   

<div class="content">
   <div v-for="(item,index) in 5" :key="index" :class="`box box${index}`"></div>
</div>
<style lang=‘scss‘ scoped>
.content{
  position: relative;
}
.box{
  position: absolute;
  width: 50px;
  height: 50px;
}
$color: red,green,blue,yellow,pink;
$top: ‘0px‘ ‘50px‘ ‘100px‘ ‘150px‘ ‘200px‘;
$left: ‘0px‘,‘50px‘,‘100px‘,‘150px‘,‘200px‘;
//    遍历一个数组
@each $c in $color{
  $i:index($color,$c);
  .box#{$i - 1}{
    background: nth($color,$i);;
  }
}
//    同时使用两个数组
@for $i from 1 to length($top) + 1 {
  .box#{$i - 1}{
    top: #{nth($top, $i)};
    left: #{nth($left, $i)};
  }
}
</style>

 

scss同时使用两个数组

标签:abs   key   position   col   nbsp   数组   pre   scss   osi   

原文地址:https://www.cnblogs.com/223zzm/p/11335310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!