<body>
<script>
/**适配**/
$(window).on("load",function () {
$(".loading").fadeOut()
})
$(document).ready(function () {
var whei = $(window).width()
$("html").css({
fontSize: whei / 20
})
$(window).resize(function () {
var whei = $(window).width()
$("html").css({
fontSize: whei / 20
})
});
});
</script>
<script src="./api/common.js"></script>
<div id="showTime"></div>
</body>
网友评论