原生大屏可视化rem页面自适应大小jquery
2020-03-19 本文已影响0人
Hello杨先生
<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>