当前位置:   article > 正文

h5 开发 rem 的计算_imgcook h5标准开发规范 rem的计算规范是?

imgcook h5标准开发规范 rem的计算规范是?

前端 h5 开发,rem 的计算,可直接拷贝查看效果和复制

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
    <meta content="telephone=no" name="format-detection" />
    <meta name="format-detection" content="email=no" />
    <meta http-equiv="Cache-Control" content="no-cache" />
    <title>响应式布局</title>
    <style>
      html {
        font-size: 20px;
        width: 100%;
        height: 100%;
      }

      body {
        margin: 0;
        padding: 0;
      }

      header,
      footer {
        width: 100%;
        background: #17a578;
        color: #fff;
        font-size: 1rem;
        text-align: center;
        line-height: 2rem;
      }

      .footer {
        position: fixed;
        bottom: 0;
      }

      .public {
        width: 5rem;
        height: 5rem;
        font-size: 1.2rem;
        display: inline-block;
        text-align: center;
        color: #fff;
        line-height: 5rem;
        margin-top: 1rem;
      }

      .left {
        background: #f00;
      }

      .center {
        background: #048f74;
      }

      .right {
        background: #000;
      }
    </style>
  </head>

  <body>
    <header>页面头部</header>
    <div class="box">
      <div class="public left"></div>
      <div class="public center"></div>
      <div class="public right"></div>
      <div class="public left"></div>
      <div class="public center"></div>
      <div class="public right"></div>
    </div>
    <footer class="footer">页面底部</footer>
    <script>
      //orientationchange方向改变事件
      (function (doc, win) {
        var docEl = doc.documentElement; //根元素html
        //判断窗口有没有orientationchange这个方法,有就赋值给一个变量,没有就返回resize方法。
        var resizeEvt = "orientationchange" in window ? "orientationchange" : "resize";
        var recalc = function () {
          var clientWidth = docEl.clientWidth;
          if (!clientWidth) return;
          // 把document的fontSize大小设置成跟窗口成一定比例的大小,从而实现响应式效果。
          // 375 的图纸上,fontSize 为 16px
          docEl.style.fontSize = 16 * (clientWidth / 375) + "px";
        };
        if (!doc.addEventListener) return;
        //addEventListener事件方法接受三个参数:第一个是事件名称比如点击事件onclick,第二个是要执行的函数,第三个是布尔值
        win.addEventListener(resizeEvt, recalc, false); 
        doc.addEventListener("DOMContentLoaded", recalc, false); //绑定浏览器缩放与加载时间
      })(document, window);
    </script>
  </body>
</html>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/421398
推荐阅读
相关标签
  

闽ICP备14008679号