美文网首页
Less for 循环

Less for 循环

作者: holidayPenguin | 来源:发表于2019-11-07 14:56 被阅读0次

    循环设定body和html的字体大小,让移动端可根据rem进行适配。

    
    @defaultRemValue: 32px;
    
    @defaultWidth: 750px;
    
    .LoopScreenArray(@n, @i: 1, @argu) when (@i <= @n) {
    
      @value: extract(@argu, @i);
    
      @media only screen and (min-width: unit(@value, px)){
        html, body{
          font-size: unit(@value / @defaultWidth * @defaultRemValue, px) !important; /* no */
        }
      }
    
      .LoopScreenArray(@n, @i+1, @argu);
    }
    
    // 屏幕适配
    .LoopScreen(@a, @b, @c, @d, @e, @f, @g, @h, @i, @j, @k, @l, @m, @n, @o, @p, @q, @r){
      .LoopScreenArray(length(@arguments), 1, @arguments);
    }
    
    
    .LoopScreen(240px, 320px, 360px, 375px, 414px, 480px, 540px, 600px, 640px, 667px, 720px, 750px, 768px, 800px, 834px, 1024px, 1080px, 1440px);
    

    相关文章

      网友评论

          本文标题:Less for 循环

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