schtonn 2 years ago
parent
commit
0878c446a7
2 changed files with 12 additions and 18 deletions
  1. 12 15
      chess/index.html
  2. 0 3
      js/chess.js

+ 12 - 15
chess/index.html

@@ -50,9 +50,6 @@
         td {
             width: 35px;
             height: 35px;
-            /* display: flex;
-    justify-content: center;
-    align-items: center; */
             text-align: center;
         }
 
@@ -74,6 +71,7 @@
             width: 18px;
             height: 18px;
             z-index: 10;
+            vertical-align: middle;
         }
 
         span::after {
@@ -83,10 +81,6 @@
             vertical-align: middle;
         }
 
-        .table {
-            margin: 0;
-        }
-
         .black {
             box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
             background: #000;
@@ -99,12 +93,6 @@
             cursor: default;
         }
 
-        .green {
-            box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
-            background-image: linear-gradient(black,white,90deg);
-            cursor: default;
-        }
-
         .tables {
             top: 0;
             left: 0;
@@ -155,6 +143,14 @@
             left: 0;
             top: 0;
         }
+
+        .btn {
+            text-shadow: rgb(85, 85, 85) 3px 2px 4px;
+        }
+
+        .noshadow{
+            text-shadow: none;
+        }
     </style>
 
     <script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
@@ -164,14 +160,15 @@
 <body>
     <div id="five">
         <div class="controls">
-            <a class="btn btn-info" href="/" style="text-shadow: rgb(85, 85, 85) 3px 2px 4px;"><i
-                    class="glyphicon glyphicon-home" aria-hidden="true"></i>&nbsp;返回</a>
+            <a class="btn btn-info" href="/"><i class="glyphicon glyphicon-home" aria-hidden="true"></i>&nbsp;返回</a>
             <button class="btn btn-primary" id="begin"><i class=" glyphicon glyphicon-ban-circle"
                     aria-hidden="true"></i>&nbsp;开始游戏</button>
             <button class="btn btn-primary" id="agin"><i class=" glyphicon glyphicon-repeat"
                     aria-hidden="true"></i>&nbsp;重新游戏</button>
             <button class="btn btn-warning" id="regret"><i class=" glyphicon glyphicon-backward"
                     aria-hidden="true"></i>&nbsp;悔棋</button>
+            <button class="btn btn-default noshadow" id="help" onclick="alert('说明:普通五子棋,需双人对战,同一设备只能使用一种颜色\n\n(找不到同伴可以自己用两个设备玩)')"><i
+                    class="glyphicon glyphicon-question-sign" aria-hidden="true"></i></button>
             <div class="light"></div>
         </div>
         <div id="game" class="center-block">

+ 0 - 3
js/chess.js

@@ -187,7 +187,6 @@ class Chess {
             this.arr = [];
             $("#xq-tips").show();
             $(".xq-txt").html("Black Wins!");
-            $('.light').addClass('green');
             $("#regret").hide();
         }
         if (this.isInclude(wrr, 1) || this.isInclude(wrr, 16) || this.isInclude(wrr, 17) || this.isInclude(wrr, 15)) {
@@ -232,7 +231,6 @@ class Chess {
         setCookie('color', myCol, exp)
         myCol = -1;
         this.reset();
-        $('.light').removeClass('green');
         $("#xq-tips").hide();
         $(".xq-txt").html("");
         $("#regret").show();
@@ -289,7 +287,6 @@ query.subscribe().then((liveQuery) => {
             exp.setTime(exp.getTime() - 1)
             setCookie('color', myCol, exp)
             myCol = -1;
-            $('.light').removeClass('green');
             $("#xq-tips").hide();
             $(".xq-txt").html("");
             $("#regret").show();