淘宝网易适配代码https://www.jqhtml.com/18980.html

    https://segmentfault.com/a/1190000004189237?utm_source=tag-newest

    https://www.cnblogs.com/helena000/p/6123365.html
    window.onresize = function(){
    var maxWidth = document.documentElement.clientWidth;
    if(maxWidth > 640){
    maxWidth = 640;
    }
    document.documentElement.style.fontSize = ((maxWidth / 640) 16) + ‘px’;
    };
    var maxWidth = document.documentElement.clientWidth;
    if(maxWidth > 640){
    maxWidth = 640;
    }
    document.documentElement.style.fontSize = ((maxWidth / 640)
    16) + ‘px’;
    在使用的时候,可以将这个部分放在一份单独的文件夹中,命名为fontSize.js,也比较好区分于别的js文件。
    如果你的设计稿是别的尺寸的,可以将我们上述fontSize.js中的640修改为自己设计稿的宽度的实际尺寸。
    移动端的最小尺寸一般是320px,最大尺寸为设计稿的尺寸,上面我们得出的是1rem的值。