欢迎光临
我们一直在努力

一个javascript脚本写的俄罗斯方块 (1)game.htm

建站超值云服务器,限时71元/月

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> 俄罗斯方块 </title>
<meta name="generator" content="editplus">
<meta name="author" content="dolphin">
<meta name="description" content="俄罗斯方块游戏">
<style>
.btnup{
         border-left:solid #ffffff 1px;
         border-top:solid #ffffff 1px;
         border-right:solid #828486 1px;
         border-bottom:solid #828486 1px;
   font-size: 9pt;
   cursor:default
        }
tr{
  font-family:"宋体";
  font-size: 9pt;
  cursor: default
}
</style>
<script language="javascript" src="russia.js"></script>
</head>

<body bgcolor="#ffffff" onload="init()" onkeydown="keydown()">
<table border="0" cellspacing="2" cellpadding="6" align="center" width="60%">
<tr valign="top">
<td width="120">
  得分:   <span id="gscore"></span>  <p>
  级别:   <span id="glevel"></span>  <p>
  行数:   <span id="gline"></span>  <p>
</td>
<td><span id="gamebody"><!– 游戏主区域 –></span></td>
<td>
  <span id="gameforecast"><!– 游戏预报区域 –></span><p>
  <button id="start" onclick="startgame()">开始游戏</button><p>
  <button id="pause" onclick="pausegame()">暂停游戏</button><p>
  <button id="over" onclick="overgame()">结束游戏</button><p>
  <button>帮    助</button>
</td>
</tr>
</table>
</body>
</html>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 一个javascript脚本写的俄罗斯方块 (1)game.htm
分享到: 更多 (0)

相关推荐

  • 暂无文章