12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0" />
- <title>糖果粉碎世界 </title>
- <!--<link rel="stylesheet" href="app.css" type="text/css" />-->
- <script type="text/javascript" src="js/game.min.js"></script>
- <script type="text/javascript" src='./sg/softgames-1.1.js'></script>
- <script type="text/javascript" src='./sg/sg.hooks.js'></script>
- <!--Analytics-->
- <style>
- BODY, HTML
- {
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- -webkit-touch-callout: none;
- -webkit-text-size-adjust: none;
- -webkit-user-select: none;
- margin: 0;
- padding: 0;
- font-family: Arial, Verdana, sans-serif;
- font-size: 12px;
- font-weight: normal;
- color: #ccc;
- background-color: #4aa4c2;
- }
- .loader {
- width: 100%;
- height: 100px;
- position: absolute;
- text-align:center;
- margin-top: 250px;
- display: block !important;
- }
- </style>
- </head>
- <body style="position:absolute" onLoad="alk();">
- <div id="viewporter" style="position: absolute; top: -8px; left: -8px;">
- <canvas id="canvas" width="700" height="900"></canvas>
- <div id="loader"></div>
- </div>
-
-
- </body>
- </html>
|