|
@@ -0,0 +1,44 @@
|
|
|
+<html>
|
|
|
+ <head>
|
|
|
+ <link rel="icon" href="./favicon.ico" />
|
|
|
+ <meta charset="utf-8" />
|
|
|
+ <title><%=title%></title>
|
|
|
+ <meta
|
|
|
+ name="viewport"
|
|
|
+ content="width=device-width,user-scalable=no,initial-scale=1, minimum-scale=1,maximum-scale=1"
|
|
|
+ />
|
|
|
+ <meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
+ <meta name="full-screen" content="yes" />
|
|
|
+ <meta name="screen-orientation" content="portrait" />
|
|
|
+ <meta name="x5-fullscreen" content="true" />
|
|
|
+ <meta name="360-fullscreen" content="true" />
|
|
|
+ <meta name="renderer" content="webkit" />
|
|
|
+ <meta name="force-rendering" content="webkit" />
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
+ <link rel="stylesheet" type="text/css" href="./index.css" />
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <%- include(cocosToolBar, {config: config}) %>
|
|
|
+ <div id="content" class="content">
|
|
|
+ <div class="contentWrap">
|
|
|
+ <div id="GameDiv" class="wrapper">
|
|
|
+ <canvas id="GameCanvas"></canvas>
|
|
|
+ <div id="splash">
|
|
|
+ <div class="progress-bar stripes"><span></span></div>
|
|
|
+ </div>
|
|
|
+ <div id="bulletin">
|
|
|
+ <div id="sceneIsEmpty" class="inner"><%=tip_sceneIsEmpty%></div>
|
|
|
+ </div>
|
|
|
+ <div class="error" id="error">
|
|
|
+ <div class="title">Error <i>(Please open the console to see detailed errors)</i></div>
|
|
|
+ <div class="error-main"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <p class="footer">
|
|
|
+ Created with <a href="https://www.cocos.com/products" target="_blank" title="Cocos Creator 3D">Cocos Creator 3D</a>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <%- include(cocosTemplate, {}) %>
|
|
|
+ </body>
|
|
|
+</html>
|