From 2cb83654294e669fe0999f073755526989499f7b Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@63.com>
Date: 星期二, 28 十二月 2021 13:34:40 +0800
Subject: [PATCH] #

---
 views/index.html |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/views/index.html b/views/index.html
index d4dba0d..46a03a1 100644
--- a/views/index.html
+++ b/views/index.html
@@ -127,8 +127,8 @@
     var speedDom = document.getElementById("speed");
     var timer = setInterval(function () {
         if (percent < 100.00) {
-            // percent += 0.02;
-            percent += 1;
+            percent += 0.02;
+            // percent += 1;
             speedDom.innerText = percent.toFixed(2);
         } else {
             speedDom.innerText = '100.00';
@@ -141,7 +141,7 @@
 
     $(document).on('click','.btn-word', function () {
         // fullScreen()
-        $("#mask").fadeOut(1, function () {  // 3000
+        $("#mask").fadeOut(3000, function () {  // 3000
             $("#menu").addClass("show");
             setTimeout(function () {
                 $("#ship-type-ul").css("transform", "translateY(-40px)");
@@ -154,7 +154,7 @@
                 setTimeout(function () {
                     removeClass(document.getElementById("title-box"), "show");
                 }, 10000);
-            }, 1);   // 1000
+            }, 1000);   // 1000
         });
         $("#title-box, #logo").addClass("show");
         $("#ship-info-btn").removeClass("show");

--
Gitblit v1.9.1