mirror of
https://github.com/Cola-Echo/memory-manager-concurrent.git
synced 2026-06-06 15:55:52 +00:00
45 lines
1.6 KiB
HTML
45 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html style="touch-action: none;">
|
|
<head>
|
|
<title>Mario - Backbone Game Engine</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link href="../favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
<link href="../apple_touch_icon.png" rel="apple-touch-icon" />
|
|
|
|
<meta name="viewport" content="width=960, user-scalable=no"/>
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
|
|
|
|
<script src="../3rd/underscore.js" type="text/javascript"></script>
|
|
<script src="../3rd/backbone.native.js" type="text/javascript"></script>
|
|
<script src="../3rd/backbone.js" type="text/javascript"></script>
|
|
|
|
<script src="../src/adjust-viewport.js" type="text/javascript"></script>
|
|
<script src="../src/shapes.js" type="text/javascript"></script>
|
|
<script src="../src/core.js" type="text/javascript"></script>
|
|
|
|
<script src="main.js" type="text/javascript"></script>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
background-color: #000;
|
|
}
|
|
canvas {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="foreground" width="960" height="700">
|
|
Your browser does not support canvas element.
|
|
</canvas>
|
|
</body>
|
|
|
|
</html> |