hextris/index.html

42 lines
1.5 KiB
HTML
Raw Normal View History

2014-05-17 23:26:31 +00:00
<!-- HackExeter -->
2014-05-18 18:12:33 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, minimal-ui"/>
2014-05-17 14:15:59 +00:00
<html>
2014-05-19 19:50:10 +00:00
<head>
2014-05-19 20:22:30 +00:00
<title>Hextris</title>
2014-05-19 19:50:10 +00:00
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Roboto">
<style>
* {
padding: 0;
margin: 0;
}
2014-05-18 18:12:33 +00:00
2014-05-19 19:50:10 +00:00
body {
color: white;
font-family: 'Roboto', sans-serif;
}
</style>
2014-05-18 18:12:33 +00:00
2014-05-19 19:50:10 +00:00
<script src="vendor/hammer.min.js"></script>
<script src="vendor/keypress.min.js"></script>
</head>
<body style="background-color:#2c3e50">
2014-05-17 22:47:37 +00:00
2014-05-19 19:50:10 +00:00
<div style="margin: 1vmin auto 0 auto; width: 100%; text-align: center;">
<h1 style="color: #ecf0f1; font-size: 10vmin;">Hextris</h1>
<span id="score" style="color: #ecf0f1; font-size: 4vmin;">0 (x1)</span>
</div>
2014-05-18 18:12:33 +00:00
2014-05-20 02:16:43 +00:00
<canvas id="canvas" width="800" height="800" style="position: absolute; left: calc(50% - 80vmin / 2); height: 80vmin; width: 80vmin; background-color: rgba(0,0,0,0);"></canvas>
2014-05-18 18:12:33 +00:00
2014-05-19 19:50:10 +00:00
<div id="leftTap" style="position: absolute; left: 0; top: 0; height: 100%; width: 50%;"></div>
<div id="rightTap" style="position: absolute; right: 0; top: 0; height :100%; width: 50%;"></div>
2014-05-18 18:12:33 +00:00
2014-05-19 19:50:10 +00:00
<script src="js/math.js"></script>
<script src="js/entities.js"></script>
<script src="js/input.js"></script>
<script src="js/checking.js"></script>
<script src="js/main.js"></script>
2014-05-18 15:43:49 +00:00
2014-05-19 19:50:10 +00:00
</body>
2014-05-17 16:45:22 +00:00
</html>