文件名称:移动适配的几种方案(三种方案)
文件大小:28KB
文件格式:PDF
更新时间:2023-12-18 18:04:36
font-size
1.直接利用js适配 (function (doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = function () { var clientWidth = docEl.clientWidth; if (!clientWidth) return; docEl.style.fontSize = 100 * (clientWidth / 750) + 'px'; }; if (!doc.a