//code by chende301@foxmail.com

//初始化字体大小
$(function(){webSize()});

$(window).resize(function(){
	webSize();
	});
//页面载入完成后调用的函数
$(document).ready(function() {

	console.log('  384px以下窗口请使用移动端浏览器或Firefox浏览, \n  Google chrome在384px以下无法正确显示比例')
	//console.log('  code by \n %c chende301@foxmail.com',"color:red");
	
	//backup
	$(".backup").click(function () { $("html,body").animate({ scrollTop: "0px" }, 800) });
});

//设置网页字体大小()
function webSize(){
		var winWidth = $(window).width();
		var fontSiz  = (260<=winWidth && winWidth<=640)?(winWidth/640*16):'16';
		var topHight = $('#logo').height();
		//console.log(fontSiz);
		$('html').css('font-size',fontSiz + 'px');
		$('article').css('padding-top',topHight+'px');
		//alert(topHight);
	}