/技术
分类:技术最近更新:2020-09-16浏览:1423
写H5页面经常用的固定格式
html创蓝ERP ~~ /* 给html定义字体 */ /* ================================================== */ var ohtml = document.documentElement; getSize(); function getSize() { var screenWidth = ohtml.clientWidth; if (screenWidth = 800) { ohtml.style.fontSize = '125px'; } else { ohtml.style.fontSize = screenWidth / (640 / 100) + 'px'; } } window.onresize = function() { getSize(); }; ~~ ** **