| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
|
|
| <title>Cocos Creator | hello_world</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="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
| <meta name="format-detection" content="telephone=no"> |
|
|
| |
| <meta name="renderer" content="webkit"/> |
| <meta name="force-rendering" content="webkit"/> |
| |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> |
| <meta name="msapplication-tap-highlight" content="no"> |
|
|
| |
| <meta name="full-screen" content="yes"/> |
| <meta name="x5-fullscreen" content="true"/> |
| <meta name="360-fullscreen" content="true"/> |
| |
| |
| <meta name="screen-orientation" content="landscape"/> |
| <meta name="x5-orientation" content="landscape"> |
|
|
| |
| |
| <meta name="x5-page-mode" content="app"> |
|
|
| |
| |
|
|
| <link rel="stylesheet" type="text/css" href="style-mobile.25fc5.css"/> |
| <link rel="icon" href="favicon.8de18.ico"/> |
| </head> |
| <body> |
| <canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas> |
| <div id="splash"> |
| <div class="progress-bar stripes"> |
| <span style="width: 0%"></span> |
| </div> |
| </div> |
|
|
| <script src="src/settings.8213f.js" charset="utf-8"></script> |
|
|
| <script src="main.7e1e1.js" charset="utf-8"></script> |
|
|
| <script type="text/javascript"> |
| (function () { |
| |
| if (typeof VConsole !== 'undefined') { |
| window.vConsole = new VConsole(); |
| } |
| |
| var debug = window._CCSettings.debug; |
| var splash = document.getElementById('splash'); |
| splash.style.display = 'block'; |
| |
| function loadScript (moduleName, cb) { |
| function scriptLoaded () { |
| document.body.removeChild(domScript); |
| domScript.removeEventListener('load', scriptLoaded, false); |
| cb && cb(); |
| }; |
| var domScript = document.createElement('script'); |
| domScript.async = true; |
| domScript.src = moduleName; |
| domScript.addEventListener('load', scriptLoaded, false); |
| document.body.appendChild(domScript); |
| } |
| |
| loadScript(debug ? 'cocos2d-js.js' : 'cocos2d-js-min.d5baf.js', function () { |
| if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) { |
| loadScript(debug ? 'physics.js' : 'physics-min.941a2.js', window.boot); |
| } |
| else { |
| window.boot(); |
| } |
| }); |
| })(); |
| </script> |
| </body> |
| </html> |
|
|