Sint/index.html
Markus Scully e560f514ae Version 0.5
Changed menu layout. Added options for controls. Removed multiplayer
button. Added multiple game modes, only time trial is different for now.
Added fallback for particle errors. Lots of bug fixes in menu. Added
camera stopping at edge of level. Added support for mobiles devices.
Fixed jump sound. Fixed graphics for browsers other than Chrome. Other
changes too.
2013-08-17 12:38:50 +01:00

32 lines
No EOL
570 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=500, initial-scale=1, maximum-scale=1">
<title>
Sint
</title>
<script src="sint.js"></script>
<script src="level.js"></script>
<link rel="icon" type="image/png" href="favicon.png">
<style>
body{
background-color: #eee;
}
#innergame{
width: 110%;
height: 100%;
background-color: #523;
}
</style>
</head>
<body>
<div id="holder">
<canvas id="game" width="500" height="320" />
<div id='innergame'>
</div>
</canvas>
</div>
</body>
</html>