index.html 7.7 KB

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