ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【高端】几个关于SCSS中for循环的高级玩法

2021-08-06 22:02:03  阅读:237  来源: 互联网

标签:SCSS bg 高端 color 玩法 len nth through background


简单版

@for $i from 1 through 6 {
  &:nth-of-type(#{$i}) img {
    transition-delay: calc(0.1 *#{$i}s);//逐次延时效果
  }
}

进阶版

@for $i from 1 through length($数组) {
  $color: nth($数组, $i);
  &:nth-of-type(#{$i}) {
    color: $color;//通常用于序列颜色显示效果
    &:hover {
      color: white;
    }
  }
}

混合版

$bg-color: "blue", "lightBlue", "green", "orange", "yellow", "purple", "pink", "red", "lightRed";
$bgColors: $blue, $lightBlue, $green, $orange, $yellow, $purple, $pink, $red, $lightRed;
@for $i from 1 through length($bg-color) {
//通过颜色属性定位不同节点,制定进行颜色样式设置
  &[bg-color="#{nth($bg-color, $i)}"] {
    color: white;
    background-color: nth($bgColors, $i);
    background-image: url("static/img/v-html/bg/#{nth($bg-color, $i)}.jpg");
  }
}

复杂序列逐帧动画

<style lang='scss' scoped>
.sg-body {
  animation: sg-animate 2s infinite alternate; //在两秒内完成序列png动画图片来回播放,并循环无限次

  $bgPreUrl: "http://www.shuzhiqiang.com/img/bg_"; //序列图路径前缀
  @keyframes sg-animate {
    $len: 75; //逐帧动画画面自由75张图
    @for $i from 0 through $len {
      #{ $i * 1% } {
        background-image: url(#{$bgPreUrl}#{$i}.png);
      }
    }
    // 序列图播放完毕那一刻到100%时间(第2s结束那一刻)之间都停留在最后一张序列图静止不动
    #{ $len * 1% },
    100% {
      background-image: url(#{$bgPreUrl}#{$len}.png);
    }
  }
}
</style>

编译后的CSS代码如图


……

 

 

标签:SCSS,bg,高端,color,玩法,len,nth,through,background
来源: https://blog.csdn.net/qq_37860634/article/details/119463709

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有