web端 屏幕适配方案

163 阅读1分钟

记录 PC 端,不同分辨率下适配的偏中性的方案。

$ npm i postcss-pxtorem autoprefixer -D

flexible.js 源码,将其引入 main.js

;(function(win, lib) {
  let doc = win.document
  let docEl = doc.documentElement
  let metaEl = doc.querySelector('meta[name="viewport"]')
  let flexibleEl = doc.querySelector('meta[name="flexible"]')
  let dpr = 0
  let scale = 0
  let tid
  let flexible = lib.flexible || (lib.flexible = {})

  if (metaEl) {
      let match = metaEl.getAttribute('content').match(/initial-scale=([\d.]+)/)
      if (match) {
          scale = parseFloat(match[1])
          dpr = parseInt(1 / scale)
      }
  } else if (flexibleEl) {
      let content = flexibleEl.getAttribute('content')
      if (content) {
          let initialDpr = content.match(/initial-dpr=([\d.]+)/)
          let maximumDpr = content.match(/maximum-dpr=([\d.]+)/)
          if (initialDpr) {
              dpr = parseFloat(initialDpr[1])
              scale = parseFloat((1 / dpr).toFixed(2))
          }
          if (maximumDpr) {
              dpr = parseFloat(maximumDpr[1])
              scale = parseFloat((1 / dpr).toFixed(2))
          }
      }
  }

  if (!dpr && !scale) {
    //   let isAndroid = win.navigator.appVersion.match(/android/gi)
      let isIPhone = win.navigator.appVersion.match(/iphone/gi)
      let devicePixelRatio = win.devicePixelRatio
      if (isIPhone) {
          // iOS下,对于2和3的屏,用2倍的方案,其余的用1倍方案
          if (devicePixelRatio >= 3 && (!dpr || dpr >= 3)) {
              dpr = 3
          } else if (devicePixelRatio >= 2 && (!dpr || dpr >= 2)) {
              dpr = 2
          } else {
              dpr = 1
          }
      } else {
          // 其他设备下,仍旧使用1倍的方案
          dpr = 1
      }
      scale = 1 / dpr
  }

  docEl.setAttribute('data-dpr', dpr)
  if (!metaEl) {
      metaEl = doc.createElement('meta')
      metaEl.setAttribute('name', 'viewport')
      metaEl.setAttribute('content', 'initial-scale=' + scale + ', maximum-scale=' + scale + ', minimum-scale=' + scale + ', user-scalable=no')
      if (docEl.firstElementChild) {
          docEl.firstElementChild.appendChild(metaEl)
      } else {
          let wrap = doc.createElement('div')
          wrap.appendChild(metaEl)
          doc.write(wrap.innerHTML)
      }
  }

  function refreshRem() {
    let width = docEl.getBoundingClientRect().width
    // 此处以适配范围为1600---5760为例 //主要适配的分辨率区间
    if (width / dpr < 1600) {
        width = 1600 * dpr
    } else if (width / dpr > 5760) {
        width = 5760 * dpr
    }
    let rem = width / 19.2 // 使用时1rem=100px
    docEl.style.fontSize = rem + 'px'
    flexible.rem = win.rem = rem
}

  win.addEventListener('resize', function() {
      clearTimeout(tid)
      tid = setTimeout(refreshRem, 300)
  }, false)
  win.addEventListener('pageshow', function(e) {
      if (e.persisted) {
          clearTimeout(tid)
          tid = setTimeout(refreshRem, 300)
      }
  }, false)

  if (doc.readyState === 'complete') {
      doc.body.style.fontSize = 12 * dpr + 'px'
  } else {
      doc.addEventListener('DOMContentLoaded', function(e) {
          doc.body.style.fontSize = 12 * dpr + 'px'
      }, false)
  }

  refreshRem()

  flexible.dpr = win.dpr = dpr
  flexible.refreshRem = refreshRem
  flexible.rem2px = function(d) {
      let val = parseFloat(d) * this.rem
      if (typeof d === 'string' && d.match(/rem$/)) {
          val += 'px'
      }
      return val
  }
  flexible.px2rem = function(d) {
      let val = parseFloat(d) / this.rem
      if (typeof d === 'string' && d.match(/px$/)) {
          val += 'rem'
      }
      return val
  }
})(window, window.lib || (window.lib = {}))

在根目录下新增 postcss.config.cjs

module.exports = {
  plugins: {
    autoprefixer: {
      overrideBrowserslist: [
        'Android 4.1',
        'iOS 7.1',
        'Chrome > 31',
        'not ie <= 11', // 不考虑IE浏览器
        'ff >= 30', // 仅新版本用“ff>=30
        '> 1%', //  全球统计有超过1%的使用率使用“>1%”;
        'last 2 versions' // 所有主流浏览器最近2个版本
      ],
      grid: true // 开启grid布局的兼容(浏览器IE除外其他都能兼容grid,可以关闭开启)
    },
    'postcss-pxtorem': {
      rootValue: 100, // 根节点字体大小,以100px为例,可根据自己需求修改
      propList: ['*', '!border*'],
      selectorBlackList: ['.px'], // 过滤掉.px-开头的class,不进行rem转换
      unitPrecision: 5, // 保留rem小数点多少位
      replace: false, // 是否隐藏 px 单位
      mediaQuery: false, // 媒体查询( @media screen 之类的)中不生效
      minPixelValue: 12, // px小于12的不会被转换
      exclude: /node_modules/i // 排除 node_modules 文件(node_modules 内文件禁止转换)
    }
  }
}

over