|
@@ -1,6 +1,12 @@
|
|
|
<!DOCTYPE html>
|
|
|
<html lang="zh-cn">
|
|
|
<head>
|
|
|
+ <script>
|
|
|
+ //加载开始时间
|
|
|
+ var start_time = (new Date()).getTime();
|
|
|
+ var route_path = window.location.href.split("#")[1].replace(/\?.*/, '')
|
|
|
+ </script>
|
|
|
+
|
|
|
<meta charset="utf-8">
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,IE=IE9">
|
|
@@ -22,8 +28,47 @@
|
|
|
continue.
|
|
|
</strong>
|
|
|
</noscript>
|
|
|
+
|
|
|
+ <div id="z-loading-1" style="display: block;position: fixed;left:0px;top:0px;bottom:0px;right:0px;width: 100%;height: 100%;background: rgb(255, 255, 255, 0.9);z-index: 999;">
|
|
|
+ <div style="position: absolute;top: 40%;left: 40%">
|
|
|
+ <img src="xxd_loading.gif" id="loading-gif" />
|
|
|
+ </div>
|
|
|
+ <div class="index-load" id="index-load" style="display:block;position: absolute;bottom: 10px;right: 10px;"></div>
|
|
|
+ </div>
|
|
|
+ <script>
|
|
|
+ var indexSetInval;
|
|
|
+ var indexStartNum = 1;
|
|
|
+ indexSetInval = setInterval(function() {
|
|
|
+ indexStartNum++;
|
|
|
+ var str = '加载中' + ((indexStartNum % 2 == 0) ? '…' : '……');
|
|
|
+ document.getElementById('index-load').innerHTML = str;
|
|
|
+ }, 1000)
|
|
|
+ </script>
|
|
|
+
|
|
|
<div id="app"></div>
|
|
|
|
|
|
+ <script>
|
|
|
+ window.onload = function() {
|
|
|
+ clearInterval(indexSetInval);
|
|
|
+ var end_time = (new Date()).getTime();
|
|
|
+ var loading_time = end_time - start_time;
|
|
|
+ console.log(((loading_time) / 1000).toString() + '秒');
|
|
|
+ if (loading_time < 2000) {
|
|
|
+ setTimeout(function() {
|
|
|
+ removeLoading();
|
|
|
+ }, 2000 - (loading_time));
|
|
|
+ } else {
|
|
|
+ removeLoading()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function removeLoading() {
|
|
|
+ if (document.getElementById('z-loading-1').style.display != 'none') {
|
|
|
+ var loading = document.getElementById('z-loading-1');
|
|
|
+ }
|
|
|
+ document.body.removeChild(loading);
|
|
|
+ }
|
|
|
+ </script>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
(function() {
|