|
|
@ -13,27 +13,33 @@ |
|
|
|
</style> |
|
|
|
</head> |
|
|
|
<body> |
|
|
|
<div style="text-align:center;width:120px;height:120px;position:fixed;top:50%;left:50%;margin-left:-60px;margin-top:-60px;background: #2C3E50;"> |
|
|
|
<div style="text-align:center;width:120px;height:120px;position:fixed;top:50%;left:50%;margin-left:-60px;margin-top:-60px;background: #2C3E50;display: none" |
|
|
|
id="loading_img"> |
|
|
|
<img src="oval.svg" style="width:100%;height:100%;"> |
|
|
|
</div> |
|
|
|
</body> |
|
|
|
<script> |
|
|
|
function check(){ |
|
|
|
|
|
|
|
function check() { |
|
|
|
$.ajax({ |
|
|
|
url: "http://localhost", |
|
|
|
success: function () { |
|
|
|
setTimeout(function () { |
|
|
|
$("#loading_img").fadeOut(2000, function () { |
|
|
|
location.href = "http://localhost/" |
|
|
|
},3000) |
|
|
|
}) |
|
|
|
}, 3000) |
|
|
|
}, |
|
|
|
error: function (err) { |
|
|
|
setTimeout(function () { |
|
|
|
check() |
|
|
|
},1000) |
|
|
|
}, 1000) |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
$("#loading_img").fadeIn(2000, function () { |
|
|
|
|
|
|
|
check(); |
|
|
|
}) |
|
|
|
</script> |
|
|
|
</html> |