Browse Source

修改类型(新功能),影响的范围(代码逻辑),[添加动画]

master
郑荣升 5 years ago
committed by wailovet
parent
commit
6a8d8ea859
  1. 1
      CHANGELOG.md
  2. 20
      index.html

1
CHANGELOG.md

@ -5,6 +5,7 @@
### 2019-11-13 ### 2019-11-13
#### 新功能 #### 新功能
+ 3136352472 [13:23:41] :添加动画;影响的范围(代码逻辑)
+ 3136352472 [13:09:50] :禁止休眠;影响的范围(代码逻辑) + 3136352472 [13:09:50] :禁止休眠;影响的范围(代码逻辑)
+ 3136352472 [12:38:04] :去除调试代码;影响的范围(代码逻辑) + 3136352472 [12:38:04] :去除调试代码;影响的范围(代码逻辑)
+ 3136352472 [12:34:46] :加入弹窗;影响的范围(代码逻辑) + 3136352472 [12:34:46] :加入弹窗;影响的范围(代码逻辑)

20
index.html

@ -13,27 +13,33 @@
</style> </style>
</head> </head>
<body> <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%;"> <img src="oval.svg" style="width:100%;height:100%;">
</div> </div>
</body> </body>
<script> <script>
function check(){
function check() {
$.ajax({ $.ajax({
url: "http://localhost", url: "http://localhost",
success: function () { success: function () {
setTimeout(function () { setTimeout(function () {
location.href = "http://localhost/"
},3000)
$("#loading_img").fadeOut(2000, function () {
location.href = "http://localhost/"
})
}, 3000)
}, },
error: function (err) { error: function (err) {
setTimeout(function () { setTimeout(function () {
check() check()
},1000)
}, 1000)
} }
}); });
} }
check();
$("#loading_img").fadeIn(2000, function () {
check();
})
</script> </script>
</html> </html>
Loading…
Cancel
Save