/技术
分类:技术来源:bobo最近更新:2020-09-16浏览:1422
写H5页面经常用的固定格式
创蓝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();
};
~~
**
**