indexhtml

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>五子棋</title>
 6     <meta name="viewport" content="width=device-width"> <!-- 适应移动屏幕 -->
 7     <link rel="stylesheet" type="text/css" href="style.css">
 8 </head>
 9 <body>
10     <h1>五子棋人机对战版</h1>
11     
12     <canvas id="chess" width="450px" height="450px">
13     </canvas>
14     <div id="restart">
15         <span>重新开始</span>
16     </div>
17     <!-- <script type="text/javascript" src="script.js"></script> --> <!-- 未封装版本 -->
18     <script type="text/javascript" src="gobang.js"></script>  <!-- 封装版本 -->
19 </body>
20 </html>
View Code

相关文章:

  • 2022-12-23
  • 2021-08-20
  • 2021-05-05
  • 2022-12-23
  • 2021-07-26
  • 2021-12-17
  • 2021-04-10
  • 2021-12-03
猜你喜欢
  • 2021-05-26
  • 2021-08-14
  • 2021-11-21
  • 2021-10-24
  • 2021-12-18
  • 2023-03-02
  • 2021-09-26
相关资源
相似解决方案