移动端自适应

百般思念 提交于 2019-12-06 22:10:45
//设置页面字体
window.addEventListener('DOMContentLoaded', () => {
  const html = document.querySelector('html');
  let size = window.innerWidth / 10;
  size = size > 75 ? 75 : size;
  html.style.fontSize = size + 'px';
})
//配置不同环境下是否启用debugger工具
// if(window.location.hostname != 'agent.ewszjk.m.jaeapp.com' || window.location.hostname != 'm.vue.agent.3seconds.net'){
if (process.env.NODE_ENV !== 'production' || true) {
  let el = document.createElement('div');
  document.body.appendChild(el);
  eruda.init({
    container: el,
    // tool: ['console', 'elements', 'network'],
    useShadowDom: true
  });
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!