Browse Source

修改类型(新功能),影响的范围(代码逻辑),[检测服务成功代码]

master
郑荣升 5 years ago
committed by wailovet
parent
commit
bb93c0d142
  1. 1
      CHANGELOG.md
  2. 22
      index.html
  3. 4
      jquery-3.1.1.min.js

1
CHANGELOG.md

@ -5,6 +5,7 @@
### 2019-11-13
#### 新功能
+ 3136352472 [12:32:36] :检测服务成功代码;影响的范围(代码逻辑)
+ 3136352472 [12:23:18] :改了下颜色;影响的范围(前端界面)
+ 3136352472 [12:20:12] :切合服务器;影响的范围(代码逻辑)
+ 3136352472 [10:56:03] :添加忽略文件;影响的范围(代码逻辑)

22
index.html

@ -2,6 +2,7 @@
<html lang="zh">
<head>
<meta charset="UTF-8">
<script src="jquery-3.1.1.min.js"></script>
<style>
html {
text-align: center;
@ -12,8 +13,27 @@
</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;padding: 20px;">
<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>

4
jquery-3.1.1.min.js
File diff suppressed because it is too large
View File

Loading…
Cancel
Save