| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- <!DOCTYPE HTML>
 
- <html>
 
- <head>
 
- <meta charset="utf-8">
 
- <link rel="apple-touch-icon" href="icon.png" />
 
- <link rel="shortcut icon" href="icon.png" />
 
- <link rel="icon" href="icon.png" />
 
- <title>密室逃生</title>
 
- <meta name="viewport" content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
 
- <meta name="apple-mobile-web-app-capable" content="yes"/>
 
- <meta name="full-screen" content="true"/>
 
- <meta name="screen-orientation" content="portrait"/>
 
- <meta name="x5-fullscreen" content="true"/>
 
- <meta name="360-fullscreen" content="true"/>
 
- <base id="base" href=""/>
 
- <style>
 
- body {
 
- text-align: center;
 
- background: #000000;
 
- padding: 0;
 
- border: 0;
 
- margin: 0;
 
- height: 100%;
 
- }
 
- html {
 
- -ms-touch-action: none; /* Direct all pointer events to JavaScript code. */
 
- }
 
- </style>
 
- </head>
 
- <body >
 
- <div style="display:inline-block;width:100%; height:100%;margin: 0 auto; background: black; position:relative;" id="gameDiv">
 
- </div>
 
- <script>var document_class = "GameApp";</script>
 
- <script src="egret_require.js"></script>
 
- <script>
 
- egret_h5.loadSingleScript("game_config.js?r=" + Math.random(),function (){
 
- var base = document.getElementById("base");
 
- base.href = game_version + "/";
 
- egret_h5.loadScript(game_preload_list, function (){
 
- egret_h5.startGame();
 
- });
 
- });
 
- </script>
 
- </body>
 
- </html>
 
 
  |