Browse Source

修改类型(性能优化),影响的范围(代码逻辑),[体验优化]

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

3
CHANGELOG.md

@ -8,6 +8,9 @@
+ 3136352472 [15:03:04] :优化体验;影响的范围(代码逻辑)
+ 3136352472 [09:29:53] :利用随机数清除缓存;影响的范围(代码逻辑)
#### 性能优化
+ 3136352472 [15:18:32] :体验优化;影响的范围(代码逻辑)
------
### 2019-11-14

6
index.html

@ -23,7 +23,7 @@
<body>
<iframe src="" frameborder="0" id="content"
style="width: 100%;height: 100%;position: fixed;left: 0px;display: none;"></iframe>
<div class="loading" style="position: fixed;">
<div class="loading" style="position: fixed;left: 0px;">
<div style="text-align:center;width:120px;height:120px;position:fixed;top:50%;left:50%;margin-left:-60px;margin-top:-60px;background: #50bfff;display: none"
id="loading_img">
<img src="oval.svg" style="width:100%;height:100%;">
@ -38,7 +38,9 @@
setTimeout(function () {
document.getElementById("content").src = "http://localhost/?t=" + Math.random();
$("#content").show();
$(".loading").fadeOut(2000)
setTimeout(function () {
$(".loading").fadeOut(1000)
},2000);
}, 3000)
},
error: function (err) {

Loading…
Cancel
Save