/ 前端
分类:前端来源:站内 最近更新:2020-09-16 11:27:45浏览:1688留言:0
写H5页面经常用的固定格式
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no,minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="shortcut icon" href="../../favicon.ico">
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<link rel="stylesheet" type="text/css">
<title>创蓝ERP</title>
<script>
/* 给html定义字体 */
/* ================================================== */
var ohtml = document.documentElement;
getSize();
function getSize() {
var screenWidth = ohtml.clientWidth;
if (screenWidth <= 320) {
ohtml.style.fontSize = '50px';
} else if (screenWidth >= 800) {
ohtml.style.fontSize = '125px';
} else {
ohtml.style.fontSize = screenWidth / (640 / 100) + 'px';
}
}
window.onresize = function() {
getSize();
};
</script>
</head>
<body>
<!--模块部分-->
</body>
</html>