mirror of
https://gitee.com/lvyeyou/DaShuJuZhiDaPingZhanShi.git
synced 2025-06-17 03:34:05 +08:00
27 lines
308 B
JavaScript
27 lines
308 B
JavaScript
$(window).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})
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|