Tetris HTML Code: Build a Classic Game
<!DOCTYPE html>
<html>
<head>
<title>Tetris</title>
<style>
#game {
width: 320px;
height: 480px;
margin: auto;
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Tetris</h1>
<div id='game'></div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/tetris/1.0.2/tetris.min.js'></script>
<script>
new Tetris('#game');
</script>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmeg 著作权归作者所有。请勿转载和采集!