1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <title>宠物大营救</title>
-
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
- <meta name="format-detection" content="telephone=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <style>
- html, body {
- background: #333333;
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- }
- #content {
- width: 100%;
- height: 100%;
- margin: 0px auto 1px auto;
- }
- @media (max-device-width: 8in), (max-device-height: 8in) {
- html {
- overflow: hidden;
- }
- html, body {
- height: 100%;
- }
- #content {
- height: 100%;
- width: 100%;
- margin: inherit;
- }
- .no-mobile {
- display: none;
- }
- }
- </style>
- </head>
- <body onload="startGame()">
- <div id="content"></div>
- <script src="flambe.js"></script>
- <script type="text/javascript">
- function startGame()
- {
- flambe.embed(["targets/main-html.js"], "content");
- }
- </script>
- <script language=javascript>
-
-
-
- function clickMore(){
- // Play68.goHome();
-
- }
- function dp_share(){
- // play68_submitScore(window.__score, window.__lv);
- }
-
-
- </script>
-
- <script type="text/javascript">
-
- function dp_submitScore(score,nlevel){
- // Play68.setRankingLevelScoreDesc(nlevel,score);
- window.__score=score;
- window.__lv=nlevel;
- // play68_submitScore(score, nlevel);
- }
-
- </script>
-
- </body>
- </html>
|