美文网首页JS
scss for循环样式名运算

scss for循环样式名运算

作者: 拎包哥 | 来源:发表于2021-11-22 15:55 被阅读0次
@for $i from 1 through 10 {
    .mgt#{($i * 10)}{margin-top: 10rpx * $i}
}

效果等同于

.mgt10 {margin-top:10rpx}
.mgt20 {margin-top:20rpx}
.mgt30 {margin-top:30rpx}
.mgt40 {margin-top:40rpx}
.mgt50 {margin-top:50rpx}
.mgt60 {margin-top:60rpx}
.mgt70 {margin-top:70rpx}
.mgt80 {margin-top:80rpx}
.mgt90 {margin-top:90rpx}
.mgt100 {margin-top:100rpx}

****重点****
小括号() 让样式名内的运算可行

mgt#{($i * 10)}

我的样式库

100行代码写出2000行代码的效果!!

.b1b {
    border: 1rpx solid black;
}

@for $thirty from 1 through 30 {
    .mgt#{($thirty*10)} {
        margin-top: 10rpx * $thirty;
    }

    .mgb#{($thirty*10)} {
        margin-bottom: 10rpx * $thirty;
    }

    .mgl#{($thirty*10)} {
        margin-left: 10rpx * $thirty;
    }

    .mgr#{($thirty*10)} {
        margin-right: 10rpx * $thirty;
    }
    
    .hw#{($thirty*10)} {
        height: 10rpx * $thirty;
        width: 10rpx * $thirty;
    }
    
    .h#{($thirty*10)} {
        height:10rpx * $thirty;
    }
    
    .w#{($thirty*10)} {
        width:10rpx * $thirty;
    }
    
    .top#{($thirty*10)} {
        top: 10rpx * $thirty;
    }
    
    .bottom#{($thirty*10)}{
        bottom: 10rpx * $thirty;
    }
}

@for $ten from 1 through 10 {
    .br#{($ten*10)}{
        border-radius: 10rpx * $ten;
    }
    
    .pd#{($ten*10)}{
        padding: 10rpx * $ten;
    }
    
    .zi#{($ten*10)}{
        z-index: $ten;
    }
    
    .op0d#{$ten}{
        opacity: 0.1rpx * $ten;
    }
}

@for $j from 1 through 100 {
    .w#{$j}p{
        width: 1% * $j;
    }
    
    .h#{$j}p{
        height: 1% * $j;
    }
    
    .fs#{$j}{
        font-size: 1rpx * $j;
    }
}

%df{
    display: flex;
}

%jcc{
    justify-content: center;
}

%aic{
    align-items: center;
}

%jcsb{
    justify-content: space-between;
}

.jcc {
    @extend %jcc;
}

.aic{
    @extend %aic;
}

.jcsb{
    @extend %jcsb;
}

.vm{
    @extend %df, %aic;
}

.hm{
    @extend %df, %jcc;
}

.bs{
    @extend %df, %jcsb;
}

.heart{
    @extend %df,%jcc,%aic;
}

.vmbs {
    @extend .vm,.bs; 
}

.hmbs {
    @extend .hm,.bs;
    // background-color: yellow;
}

$colorArr:black,yellow,blue,red,pink,brown,aqua, black, fuchsia, gray, green, lime, maroon, navy, olive, orange, purple, silver, teal, white, yellow;

@each $color in $colorArr {
    .bg-#{$color} {
        background-color: $color;
    }
    
    .f-#{$color} {
        color: $color;
    }
}

关注拎包哥,每天1个教程里没有的前端小知识点。

相关文章

  • scss for循环样式名运算

    效果等同于 ****重点****小括号() 让样式名内的运算可行 我的样式库 100行代码写出2000行代码的效果...

  • 【CSS】SCSS

    Scss语法 变量 $ 嵌套 父选择器 属性嵌套 占位符 % 运算 / % < <= > >= ...

  • SCSS语法

    嵌套规则 引用父选择器 & 嵌套属性规则 运算 声明变量 数学运算 特殊的 / 除法运算符 scss为了兼容IE8...

  • 0713

    days04 列表 循环 复习: 运算符 赋值运算符 比较运算符、关系运算符 逻辑运算符 while循环 brea...

  • Day3 while和for循环

    while(判断条件){运算条件;} for(初始化参数;循环条件;表达式)运算条件; while 循环循环条件判...

  • 循环运算

    【摘要】 循环运算是指按照一定的次序对集合的成员进行计算。除了在循环中访问当前成员、对成员赋值等简单的计算,还有在...

  • scss循环的应用

    length() 是用来获取数组的长度这个样式是做项目的时候用到的 根据不用的类别 显示不用的字体颜色@for ...

  • 第五章 循环和关系表达式(1)for循环语句

    (一)for循环语句 1.for循环的用法 for (i=0;i<6;i++) {循环体} ++运算符递增运算符...

  • 初识R语言—使用R和R的语法

    运算 循环语句 访问数据

  • Kotlin 运算符、符号重载总结

    算数运算符 关系运算符 示例 逻辑运算符 位运算符 三目运算 Java Kotlin forEach、in 循环 ...

网友评论

    本文标题:scss for循环样式名运算

    本文链接:https://www.haomeiwen.com/subject/mysbtrtx.html