87 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 
 | |
| <head>
 | |
|   <meta charset="utf-8">
 | |
| 
 | |
|   <title>Cocos Creator</title>
 | |
| 
 | |
|   <!--http://www.html5rocks.com/en/mobile/mobifying/-->
 | |
|   <meta name="viewport"
 | |
|     content="width=device-width,user-scalable=no,initial-scale=1, minimum-scale=1,maximum-scale=1" />
 | |
| 
 | |
|   <!--https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
 | |
|   <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">
 | |
| 
 | |
|   <!-- force webkit on 360 -->
 | |
|   <meta name="renderer" content="webkit" />
 | |
|   <meta name="force-rendering" content="webkit" />
 | |
|   <!-- force edge on IE -->
 | |
|   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
 | |
|   <meta name="msapplication-tap-highlight" content="no">
 | |
| 
 | |
|   <!-- force full screen on some browser -->
 | |
|   <meta name="full-screen" content="yes" />
 | |
|   <meta name="x5-fullscreen" content="true" />
 | |
|   <meta name="360-fullscreen" content="true" />
 | |
| 
 | |
|   <!-- force screen orientation on some browser -->
 | |
|   <meta name="screen-orientation" content="" />
 | |
|   <meta name="x5-orientation" content="">
 | |
| 
 | |
|   <!--fix fireball/issues/3568 -->
 | |
|   <!--<meta name="browsermode" content="application">-->
 | |
|   <meta name="x5-page-mode" content="app">
 | |
| 
 | |
|   <!--<link rel="apple-touch-icon" href=".png" />-->
 | |
|   <!--<link rel="apple-touch-icon-precomposed" href=".png" />-->
 | |
|   <!--自定義-->
 | |
|   <link rel="icon" href="favicon.ico">
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   <div id="background-img"></div>
 | |
|   <div ccc-devtools="ccc-devtools/index.html"></div>
 | |
|   <canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas>
 | |
|   <div id="splash">
 | |
|     <div class="progress-bar stripes">
 | |
|       <span style="width: 0%"></span>
 | |
|     </div>
 | |
|   </div>
 | |
| 
 | |
|   <!--自定義-->
 | |
|   <link href="catan/style-mobile.css" rel="stylesheet" type="text/css" />
 | |
|   <link href="catan/style.css" rel="stylesheet" type="text/css" />
 | |
|   <script type="text/javascript" charset="utf-8" src="catan/boot.js"></script>
 | |
|   <script type="text/javascript" src="build-templates_dist/index.js"></script>
 | |
|   <script type="text/javascript" src="build-templates_dist/platform.js"></script>
 | |
| 
 | |
|   <!--COCOS-->
 | |
|   <script type="text/javascript" charset="utf-8" src="settings.js"></script>
 | |
|   <script type="text/javascript" charset="utf-8" src="/socket.io/socket.io.js"></script>
 | |
|   <script type="text/javascript" charset="utf-8" src="app/engine/bin/cocos2d-js-for-preview.js"></script>
 | |
|   <script type="text/javascript" charset="utf-8" src="preview-scripts/__quick_compile__.js"></script>
 | |
|   <script type="text/javascript" charset="utf-8" src="app/node_modules/vconsole/dist/vconsole.min.js"></script>
 | |
| 
 | |
|   <!--vConsole-->
 | |
|   <script type="text/javascript">
 | |
|     let url = window.location.search;
 | |
|     let request = [];
 | |
|     if (url.indexOf("?") != -1) {
 | |
|       let str = url.substr(1);
 | |
|       let strs = str.split("&");
 | |
|       for (let i = 0; i < strs.length; i++) {
 | |
|         request[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
 | |
|       }
 | |
|     }
 | |
|     let vConsole = request["vConsole"];
 | |
|     if (vConsole) {
 | |
|       vConsole = new VConsole();
 | |
|     }
 | |
|   </script>
 | |
| 
 | |
| </body>
 | |
| 
 | |
| </html> |