index.html 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!-- <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
  5. integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> -->
  6. <script type="text/javascript" src="../js/jquery.min.js" crossorigin="anonymous"></script>
  7. <link rel="stylesheet" href="../css/bootstrap.min.css" crossorigin="anonymous">
  8. <script type="text/javascript" src="../js/bootstrap.min.js" crossorigin="anonymous"></script>
  9. <link rel="stylesheet" href="../css/style.css">
  10. <link rel="preconnect" href="https://fonts.gstatic.com">
  11. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  12. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  13. <title>五子</title>
  14. <meta charset="UTF-8">
  15. <style>
  16. * {
  17. padding: 0;
  18. margin: 0;
  19. }
  20. html,
  21. body,
  22. #five {
  23. background: #ccc;
  24. height: 100%;
  25. }
  26. .controls {
  27. /* position: absolute; */
  28. top: 20px;
  29. margin: 5px;
  30. }
  31. #game {
  32. width: 580px;
  33. height: 580px;
  34. /* box-shadow: 2px 2px 5px #333333; */
  35. /* text-align: center; */
  36. padding: 10px;
  37. background: rgba(0, 0, 0, 0.2);
  38. }
  39. table {
  40. width: 560px;
  41. border-collapse: collapse;
  42. border-spacing: 0;
  43. }
  44. td {
  45. width: 35px;
  46. height: 35px;
  47. text-align: center;
  48. }
  49. span {
  50. transition-duration: 100ms;
  51. display: inline-block;
  52. border-radius: 50%;
  53. width: 28px;
  54. height: 28px;
  55. vertical-align: middle;
  56. cursor: pointer;
  57. }
  58. .led {
  59. transition-duration: 100ms;
  60. display: inline-block;
  61. border: 5px double grey;
  62. border-radius: 50%;
  63. width: 18px;
  64. height: 18px;
  65. z-index: 10;
  66. vertical-align: middle;
  67. }
  68. .word {
  69. background: radial-gradient(transparent, rgb(15 15 15 / 25%));
  70. transition-duration: 100ms;
  71. display: inline-block;
  72. padding: 3px 6px;
  73. border: 5px double grey;
  74. z-index: 10;
  75. vertical-align: middle;
  76. }
  77. .red {
  78. filter: drop-shadow(0 0 2px red);
  79. outline: 5px dashed rgba(234, 71, 71, 0.5);
  80. }
  81. span::after {
  82. content: "";
  83. height: 0;
  84. display: inline-block;
  85. vertical-align: middle;
  86. }
  87. .black {
  88. box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
  89. background: #000;
  90. cursor: default;
  91. }
  92. .white {
  93. box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
  94. background: #fff;
  95. cursor: default;
  96. }
  97. .highlight.black {
  98. filter: drop-shadow(0 0 5px black);
  99. }
  100. .highlight.white {
  101. filter: drop-shadow(0 0 5px white);
  102. }
  103. .red:active {
  104. background: radial-gradient(transparent, rgb(15 15 15 / 25%));
  105. }
  106. .word:focus:not(:focus-visible):not(.red),
  107. .word:active:not(:focus-visible):not(.red),
  108. .word:hover:not(.red) {
  109. background: radial-gradient(transparent, rgb(15 15 15 / 25%));
  110. outline: 0;
  111. }
  112. .red:focus {
  113. outline: 5px dashed rgba(234, 71, 71, 0.5);
  114. }
  115. .tables {
  116. top: 0;
  117. left: 0;
  118. z-index: 3;
  119. }
  120. #xq-tips {
  121. position: absolute;
  122. top: 20%;
  123. left: 0;
  124. width: 100%;
  125. height: 150px;
  126. background: rgba(0, 0, 0, 0);
  127. display: none;
  128. z-index: 4;
  129. backdrop-filter: blur(5px);
  130. }
  131. .xq-txt {
  132. position: relative;
  133. height: 150px;
  134. background: rgba(35, 35, 35, 0.5);
  135. top: 0;
  136. bottom: 0;
  137. right: 0;
  138. left: 0;
  139. margin: auto;
  140. color: #fff;
  141. font-size: 40px;
  142. text-align: center;
  143. line-height: 150px;
  144. }
  145. #agin {
  146. display: none;
  147. }
  148. #regret {
  149. display: none;
  150. }
  151. .pointer {
  152. display: none;
  153. transition-duration: 100ms;
  154. pointer-events: none;
  155. position: absolute;
  156. opacity: 50%;
  157. left: 0;
  158. top: 0;
  159. z-index: 10;
  160. }
  161. .btn {
  162. text-shadow: rgb(85, 85, 85) 3px 2px 4px;
  163. }
  164. .noshadow {
  165. text-shadow: none;
  166. }
  167. input {
  168. outline-style: none;
  169. text-shadow: rgb(85, 85, 85) 3px 2px 4px;
  170. border: 1px solid #ccc;
  171. border-radius: 2px;
  172. background: rgb(215 215 215 / 50%);
  173. }
  174. input:hover {
  175. outline-style: none;
  176. text-shadow: rgb(85, 85, 85) 3px 2px 4px;
  177. border: 1px solid #ccc;
  178. border-radius: 2px;
  179. background: rgb(215 215 215 / 40%);
  180. }
  181. </style>
  182. <script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
  183. <title>Document</title>
  184. </head>
  185. <body>
  186. <div id="five">
  187. <div class="controls">
  188. <a class="btn btn-info" href="/"><i class="glyphicon glyphicon-home" aria-hidden="true"></i>&nbsp;返回</a>
  189. <button class="btn btn-primary" id="begin"><i class=" glyphicon glyphicon-ban-circle"
  190. aria-hidden="true"></i>&nbsp;开始游戏</button>
  191. <div class="btn-group">
  192. <button class="btn btn-primary" id="agin"><i class=" glyphicon glyphicon-repeat"
  193. aria-hidden="true"></i>&nbsp;重新游戏</button>
  194. <button class="btn btn-warning" id="regret"><i class=" glyphicon glyphicon-backward"
  195. aria-hidden="true"></i>&nbsp;悔棋</button>
  196. <button class="btn btn-info" id="check"><i class=" glyphicon glyphicon-exclamation-sign"
  197. aria-hidden="true"></i>&nbsp;下哪了</button>
  198. </div>
  199. <button class="btn btn-default noshadow" id="help"
  200. onclick="alert('说明:普通五子棋,需双人对战,同一设备只能使用一种颜色。\n(找不到同伴可以自己用两个设备玩)\n右侧按钮可用于发送信号,但请勿频繁点击。\n两个指示灯分别表示自身颜色和当前颜色,两者相同时说明该你了')"><i
  201. class="glyphicon glyphicon-question-sign" aria-hidden="true"></i></button>
  202. <div class="led mylight"></div>
  203. <div class="led light"></div>
  204. <button class="btn btn-danger word message1">快</button>
  205. <button class="btn btn-danger word message2">再想想?</button>
  206. <button class="btn btn-danger word message3">拜拜</button>
  207. <button class="btn btn-danger word message4"><input id="messageText"></button>
  208. </div>
  209. <div id="game" class="center-block">
  210. <span class="black pointer"></span>
  211. </div>
  212. <div style="display:inline-block">在线人数:<il id="messageServer"></il>
  213. </div>
  214. </div>
  215. </div>
  216. <script src="../js/chess.js"></script>
  217. </body>
  218. </html>