123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <title>唤醒圣诞老人</title><meta name="x-id" content="631">
- <meta name="x-share-icon" content="icon.png">
- <meta name="screen-orientation" content="portrait">
- <meta name="x-key" content="de3c6b0b58ffe51ee36f1d15ba3a6df5">
- <link rel="manifest" href="app.manifest" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <link rel="apple-touch-icon" sizes="256x256" href="icon.png" />
- <meta name="HandheldFriendly" content="true" />
- <meta name="HandheldFriendly" content="True">
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-touch-fullscreen" content="yes" />
- <meta name="mobile-web-app-capable" content="yes" />
- <link rel="shortcut icon" sizes="256x256" href="icon.png" />
- <style type="text/css">
- * {
- padding: 0;
- margin: 0;
- }
- html, body {
- background: #000;
- color: #fff;
- overflow: hidden;
- touch-action: none;
- -ms-touch-action: none;
- }
- canvas {
- touch-action-delay: none;
- touch-action: none;
- -ms-touch-action: none;
- }
- </style>
- </head>
- <body><img id="wxsicon" src="icon.png" width="0" height="0" style="position:absolute">
- <div id="fb-root"></div>
- <div id="c2canvasAlign" style="text-align: center;">
- <script>
- // Issue a warning if trying to preview an exported project on disk.
- (function () {
- // Check for running exported on file protocol
- if (window.location.protocol.substr(0, 4) === "file") {
- //alert("Exported games won't work until you upload them. (When running on the file:/// protocol, browsers block many features from working for security reasons.)");
- }
- })();
- </script>
- <div id="c2canvasdiv">
- <canvas id="c2canvas" width="432" height="640">
- <h1>您的浏览器不支持html5,请升级您的浏览器。
- <br />
- <br />
- <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">Microsoft Internet Explorer</a><br />
- <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a><br />
- <a href="http://www.google.com/chrome/">Google Chrome</a><br />
- <a href="http://www.apple.com/safari/download/">Apple Safari</a><br />
- <a href="http://www.google.com/chromeframe">Google Chrome Frame for Internet Explorer</a><br />
- </h1>
- </canvas>
- </div>
- </div>
- <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
- <script src="game.js"></script>
- <script src="c2runtime.js"></script>
- <script>
- // Size the canvas to fill the browser viewport.
- jQuery(window).resize(function () {
- cr_sizeCanvas(jQuery(window).width(), jQuery(window).height());
- });
- // Start the Construct 2 project running on window load.
- jQuery(document).ready(function () {
- if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
- document.getElementById("c2canvasdiv").id = "c2canvasdiv2";
- }
- // Create new runtime using the c2canvas
- cr_createRuntime("c2canvas");
- });
- // Pause and resume on page becoming visible/invisible
- function onVisibilityChanged() {
- if (document.hidden || document.mozHidden || document.webkitHidden || document.msHidden)
- cr_setSuspended(true);
- else
- cr_setSuspended(false);
- };
- document.addEventListener("visibilitychange", onVisibilityChanged, false);
- document.addEventListener("mozvisibilitychange", onVisibilityChanged, false);
- document.addEventListener("webkitvisibilitychange", onVisibilityChanged, false);
- document.addEventListener("msvisibilitychange", onVisibilityChanged, false);
- </script>
- </body>
- </html>
|