TXXT

新手坚持写代码,最后一定会成为老手

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
function resi() {
	var html = document.querySelector("html");
	var wW = document.body.clientWidth || document.documentElement.clientWidth;
	var maxW = 640;
	var minW = 320;
	if (wW > maxW) wW = maxW;
	var ratio = wW / minW;
	html.style.fontSize = 50 * ratio + "px"
}
window.addEventListener("DOMContentLoaded", function() {
	var bodys = document.querySelector("body").style;
	bodys.opacity = "1";
	bodys.filter = "alpha(opacity=100)";
	resi()
});
window.addEventListener("resize", resi);

  

posted on 2016-04-18 08:45  TXXT  阅读(265)  评论(0编辑  收藏  举报