From 6867941aa52ca278e71c19998635edac8d807ccf Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@63.com>
Date: 星期三, 22 十二月 2021 16:01:31 +0800
Subject: [PATCH] #
---
views/index.html | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/views/index.html b/views/index.html
index dcf9b4d..db094e3 100644
--- a/views/index.html
+++ b/views/index.html
@@ -13,6 +13,7 @@
<script type="text/javascript" src="../static/js/utils.js"></script>
<script type="text/javascript" src="../static/js/common.js"></script>
<script type="text/javascript" src="../static/js/data/Asrs.js"></script>
+ <script type="text/javascript" src="../static/js/data/BuildingData.js"></script>
<script type="text/javascript" src="../static/js/object/Cube.js"></script>
<script type="text/javascript" src="../static/js/object/StoreArea.js"></script>
<script type="text/javascript" src="../static/js/object/Store.js"></script>
@@ -97,10 +98,11 @@
var speedDom = document.getElementById("speed");
var timer = setInterval(function () {
if (percent < 100.00) {
- // percent += 0.04;
+ // percent += 0.02;
percent += 1;
speedDom.innerText = percent.toFixed(2);
} else {
+ speedDom.innerText = '100.00';
if (!hasClass(shipInfoBtn, "show")) {
addClass(shipInfoBtn, "show")
clearInterval(timer);
@@ -110,13 +112,13 @@
$(document).on('click','.btn-word', function () {
fullScreen()
- $("#mask").fadeOut(3000, function () {
+ $("#mask").fadeOut(1, function () {
setTimeout(function () {
$("#ship-type-ul").css("transform", "translateY(-40px)");
$("#ship-info-btn .btn-word").text("浣撻獙璋冨害涓栫晫");
$("#ship-info-btn").data("type", 2).addClass("show");
$("#ship-info-btn #btn-lock").css("z-index", "10");
- }, 1000);
+ }, 1);
});
$("#title-box, #logo").addClass("show");
$("#ship-info-btn").removeClass("show");
--
Gitblit v1.9.1