美文网首页
电商项目笔记(3)---移动端适配

电商项目笔记(3)---移动端适配

作者: CHH5431 | 来源:发表于2019-04-08 18:13 被阅读0次

步骤1:移动端适配

移动端适配无非就是以下3点:

  1. 百分比布局;
  2. rem尺寸计算;
  3. 媒体查询;

步骤2:rem.js代码

新建rem.js,并在index.html中引入即可。

let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth;
console.log("设备宽度:", htmlWidth);
let htmlDom = document.getElementsByTagName('html')[0];
htmlDom.style.fontSize = htmlWidth/20 + 'px';

步骤3:具体的引入方法

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>欢乐购</title>
</head>
<body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
</body>
</html>
<script src="./src/rem.js"></script>

相关文章

网友评论

      本文标题:电商项目笔记(3)---移动端适配

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