首页 > 代码库 > 60行代码:Javascript 写的俄罗斯方块游戏

60行代码:Javascript 写的俄罗斯方块游戏

先看效果图:

eluosi-javascript-01

 

游戏结束图:

eluosi-javascript-02

 

javascript实现源码:

<!doctype html>
<html><head><title>俄罗斯方块</title>
<meta name="Description" content="俄罗斯方块Javascript实现">
<meta name="Keywords" content="俄罗斯方块,Javascript,实现,短小精悍,游戏,ithomer,ithomer.net">
</head><body>
<div id="box" style="margin: 20px auto; text-align:center; width:252px;font:25px/25px 宋体;background:#000;color:#9f9;border:#999 20px ridge;text-shadow:2px 3px 1px #0f0;"></div>
<div id="footer" style="margin-top: 200px auto; text-align:center; font-size: 16px;">© 2009 - 2014 All Rights by <a href=http://www.mamicode.com/"http://blog.ithomer.net">ithomer.net
>


在线演示


原文: http://blog.ithomer.net/2014/05/60-lines-of-code-the-small-javascript-written-in-russia-block-game/