1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>搞定2048</title>
- <link rel="icon" type="image/png" href="res/icon.png"/>
- <meta name="apple-mobile-web-app-capable" content="yes"/>
- <meta name="full-screen" content="yes"/>
- <meta name="screen-orientation" content="portrait"/>
- <meta name="x5-fullscreen" content="true"/>
- <meta name="360-fullscreen" content="true"/>
- <style>
- body, canvas, div {
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- </style>
- </head>
- <body style="padding:0; margin: 0; background: #000;" >
- <canvas id="gameCanvas" width="400" height="660"></canvas>
- <script src="game.min.js"></script>
- <script>
-
- function shareSet(step){
- };
-
- function clickShareSet(){
-
- play68_submitScore(window.__score);
-
- };
-
- function clickSC(){
- Play68.goHome();
-
-
-
- };
-
- var fenxi = 0;
- function getCallback(){
- return fenxi;
- };
-
- </script>
- <style>
- <!--
- * {margin: 0;padding:0;}
- body {background: #222;}
- ol {list-style: none;}
- img {border: 0 none;}
- #pby {
- text-align:center;
- color:#fff;
- width: 320px;
- height: 14px;
- position: absolute;
- left:50%;
- margin-left: -160px;
- bottom: 0px;
- }
- #myad{
- }
- .wxfxClock{display:block;position:fixed;top:0;left:0;width:100%;height:100%;text-align:center;color:#fff;font-size:30px;line-height:1.7em;background:rgba(0,0,0,0.85);}
- .wxfxClock .arron{ position:absolute;top:8px;right:8px;width:100px;height:100px;background:url(/res/arron.png) no-repeat; background-size:100px 100px;}
- .wxfxClock p{padding-top:78px;}
-
- .wxfx{display:none;position:fixed;top:0;left:0;width:100%;height:100%;text-align:center;color:#fff;font-size:24px;line-height:1.7em;background:rgba(0,0,0,0.85);}
- .wxfx .arron{ position:absolute;top:8px;right:8px;width:100px;height:100px;background:url(/res/arron.png) no-repeat; background-size:100px 100px;}
- .wxfx p{padding-top:78px;}
-
- .wxfx2{display:none;position:fixed;top:0;left:0;width:100%;height:100%;text-align:center;color:#fff;font-size:24px;line-height:1.7em;background:rgba(0,0,0,0.85);}
- .wxfx2 .arron{ position:absolute;top:8px;right:8px;width:100px;height:100px;background:url(/res/arron.png) no-repeat; background-size:100px 100px;}
- .wxfx2 p{padding-top:78px;}
- -->
- </style>
- </body>
- </html>
|