2014-08-19 17:19:15 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>fuTris -- a js13kGames entry</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="main.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2014-09-12 21:38:34 +02:00
|
|
|
<h1>fuTris</h1>
|
|
|
|
<p>A <a href="http://js13kgames.com/">js13kGames 2014</a> entry (<a href="http://github.com/f0086/js13kgames-2014">source</a>)
|
|
|
|
by <a href="https://aaron-mueller.de/">Aaron Fischer</a>.</p>
|
|
|
|
|
2014-08-19 17:19:15 +02:00
|
|
|
<canvas id="fuTris"></canvas>
|
2014-09-12 21:38:34 +02:00
|
|
|
|
|
|
|
<p>Use the arrow keys to move (<span>←</span>, <span>→</span>, rotate
|
|
|
|
(<span>↑</span>) and drop (<span>↓</span>) stones. Press <span>P</span> for
|
|
|
|
pause the game. If you messed up, restart with <span>R</span>. Vim-users
|
|
|
|
will also find a way to play :)</p>
|
|
|
|
|
2014-09-12 17:40:19 +02:00
|
|
|
<audio src="assets/rotate.wav" id="rotate-sound" autostart="false"></audio>
|
|
|
|
<audio src="assets/drop.wav" id="drop-sound" autostart="false"></audio>
|
|
|
|
<audio src="assets/move.wav" id="move-sound" autostart="false"></audio>
|
|
|
|
<audio src="assets/point.wav" id="point-sound" autostart="false"></audio>
|
|
|
|
|
2014-09-12 18:43:18 +02:00
|
|
|
<!-- <script src="http://localhost:8080/skewer"></script> -->
|
2014-08-19 17:19:15 +02:00
|
|
|
<script src="fuTris.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|