You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1012 B
39 lines
1012 B
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script src="jquery-3.1.1.min.js"></script>
|
|
<style>
|
|
html {
|
|
text-align: center;
|
|
background: #2C3E50;
|
|
/*background: linear-gradient(135deg, #3023ae 0%, #c86dd7 100%);*/
|
|
cursor: none;
|
|
}
|
|
</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;">
|
|
<img src="oval.svg" style="width:100%;height:100%;">
|
|
</div>
|
|
</body>
|
|
<script>
|
|
function check(){
|
|
|
|
$.ajax({
|
|
url: "http://127.0.0.1",
|
|
success: function () {
|
|
setTimeout(function () {
|
|
location.href = "http://127.0.0.1/"
|
|
},3000)
|
|
},
|
|
error: function () {
|
|
setTimeout(function () {
|
|
check()
|
|
},1000)
|
|
}
|
|
});
|
|
}
|
|
check();
|
|
</script>
|
|
</html>
|