mirror of https://github.com/axmolengine/axmol.git
26 lines
724 B
HTML
26 lines
724 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Cocos2d-HTML5 Test Cases</title>
|
||
|
<link rel="icon"
|
||
|
type="image/GIF"
|
||
|
href="res/Images/favicon.ico"/>
|
||
|
<meta name="viewport" id="viewport" content="width=480,user-scalable=no" />
|
||
|
|
||
|
<style>
|
||
|
body, canvas, div {
|
||
|
-moz-user-select: none;
|
||
|
-webkit-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
-khtml-user-select: none;
|
||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body style="padding:0; margin: 0; background: #fff;">
|
||
|
<canvas id="gameCanvas" width="480" height="320"></canvas>
|
||
|
<script src="tests-boot-html5.js"></script>
|
||
|
</body>
|
||
|
</html>
|