index.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Cocos Creator | CloudExhibition</title>
  6. <!--http://www.html5rocks.com/en/mobile/mobifying/-->
  7. <meta name="viewport"
  8. content="width=device-width,user-scalable=no,initial-scale=1, minimum-scale=1,maximum-scale=1"/>
  9. <!--https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
  10. <meta name="apple-mobile-web-app-capable" content="yes">
  11. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  12. <meta name="format-detection" content="telephone=no">
  13. <!-- force webkit on 360 -->
  14. <meta name="renderer" content="webkit"/>
  15. <meta name="force-rendering" content="webkit"/>
  16. <!-- force edge on IE -->
  17. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  18. <meta name="msapplication-tap-highlight" content="no">
  19. <meta http-equiv="X-Content-Type-Options" content="nosniff">
  20. <!-- force full screen on some browser -->
  21. <meta name="full-screen" content="yes"/>
  22. <meta name="x5-fullscreen" content="true"/>
  23. <meta name="360-fullscreen" content="true"/>
  24. <!-- force screen orientation on some browser -->
  25. <meta name="screen-orientation" content="auto"/>
  26. <meta name="x5-orientation" content="auto">
  27. <!--fix fireball/issues/3568 -->
  28. <!--<meta name="browsermode" content="application">-->
  29. <meta name="x5-page-mode" content="app">
  30. <!--<link rel="apple-touch-icon" href=".png" />-->
  31. <!--<link rel="apple-touch-icon-precomposed" href=".png" />-->
  32. <link rel="stylesheet" type="text/css" href="style.css"/>
  33. <script>
  34. var _hmt = _hmt || [];
  35. (function() {
  36. var hm = document.createElement("script");
  37. hm.src = "https://hm.baidu.com/hm.js?a1af463bc2692b6861ac40d2e024b07d";
  38. var s = document.getElementsByTagName("script")[0];
  39. s.parentNode.insertBefore(hm, s);
  40. })();
  41. </script>
  42. </head>
  43. <body>
  44. <canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas>
  45. <!-- Polyfills bundle. -->
  46. <script src="src/polyfills.bundle.js" charset="utf-8"> </script>
  47. <!-- SystemJS support. -->
  48. <script src="src/system.bundle.js" charset="utf-8"> </script>
  49. <!-- Import map -->
  50. <script src="src/import-map.json" type="systemjs-importmap" charset="utf-8"> </script>
  51. <script>
  52. System.import('./index.js').catch(function(err) { console.error(err); })
  53. </script>
  54. </body>
  55. </html>