From 6d576e91ae879ee8e1e436b4cb4f6f12e5f2b46e Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@63.com>
Date: 星期三, 22 十二月 2021 13:56:20 +0800
Subject: [PATCH] #
---
views/index.html | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/views/index.html b/views/index.html
index a806627..6ea4fb9 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>
@@ -40,7 +41,7 @@
<div id="mask" class="mask"></div>
<div id="title-box" class="title-box">
- <div id="title" class="title"><i>A</i><i> </i><i>S</i><i> </i><i>/</i><i> </i><i>R</i><i> </i><i>S</i><i> </i><i>-</i><i> </i><i>W</i><i> </i><i>C</i><i> </i><i>S</i></div>
+ <div id="title" class="title"><i>A</i><i>S</i><i> </i><i>/</i><i> </i><i>R</i><i>S</i><i> </i><i>-</i><i> </i><i>W</i><i> </i><i>C</i><i> </i><i>S</i></div>
<div class="say">
<p>鑷姩鍖栦粨搴撴帶鍒剁郴缁燂紝鏄粙浜嶹MS鍜孭LC涔嬮棿鐨勪竴灞傜鐞嗘帶鍒剁郴缁�</p>
<p>鍙互鍗忚皟鍚勭鐗╂祦璁惧濡傝緭閫佹満銆佸爢鍨涙満銆佺┛姊溅浠ュ強鏈哄櫒浜恒�佽嚜鍔ㄥ寮曞皬杞︾瓑鐗╂祦璁惧涔嬮棿鐨勮繍琛�</p>
@@ -86,6 +87,7 @@
document.getElementById("btn-lock").addEventListener('click', function () {
player.lockControl();
removeClass(document.getElementById("ship-info-btn"), "show");
+ removeClass(document.getElementById("title-box"), "show");
document.getElementById("ship-type-ul").style.transform = 'translateY(-60px)';
}, false);
@@ -95,8 +97,9 @@
var shipInfoBtn = document.getElementById("ship-info-btn");
var speedDom = document.getElementById("speed");
var timer = setInterval(function () {
- if (percent < 99.95) {
- percent += 0.05;
+ if (percent < 100.00) {
+ percent += 0.04;
+ // percent += 1;
speedDom.innerText = percent.toFixed(2);
} else {
if (!hasClass(shipInfoBtn, "show")) {
@@ -115,9 +118,6 @@
$("#ship-info-btn").data("type", 2).addClass("show");
$("#ship-info-btn #btn-lock").css("z-index", "10");
}, 1000);
- setTimeout(function () {
- $("#title-box").removeClass("show");
- }, 5000);
});
$("#title-box, #logo").addClass("show");
$("#ship-info-btn").removeClass("show");
--
Gitblit v1.9.1