index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html manifest="manifest.mf"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  3. <meta charset="utf-8">
  4. <title>滚滚足球</title>
  5. <!-- Define the viewport -->
  6. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0, target-densitydpi=device-dpi">
  7. <meta name="format-detection" content="telephone=no">
  8. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  9. <meta name="apple-mobile-web-app-capable" content="yes">
  10. <style>
  11. * {
  12. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  13. }
  14. html {
  15. overflow: hidden;
  16. }
  17. body, html {
  18. margin: 0;
  19. padding: 0;
  20. background-color: #333333;
  21. -webkit-touch-callout: none;
  22. -webkit-user-select: none;
  23. -khtml-user-select: none;
  24. -moz-user-select: none;
  25. -ms-user-select: none;
  26. user-select: none;
  27. }
  28. #gamediv {
  29. margin: 0;
  30. padding: 0;
  31. height: 960px;
  32. min-height: 960px;
  33. width: 100%;
  34. display: block;
  35. }
  36. #canvas {
  37. background-color: #64B5DF;
  38. margin: 0;
  39. padding: 0;
  40. position: absolute;
  41. top: 50%;
  42. left: 50%;
  43. margin-top: -172px;
  44. margin-left: -160px;
  45. z-index: 1;
  46. }
  47. </style>
  48. <script type="text/javascript" ></script>
  49. <script language="javascript" type="text/javascript"></script>
  50. <script type="text/javascript" src="js/core.js"></script>
  51. <script type="text/javascript" src="js/game.min.js"></script>
  52. </head>
  53. <body onload="MyGame.init()" ryt12819="1">
  54. <div id="gamediv" style="height: 946px;"></div>
  55. <canvas id="canvas" width="765" height="946" style="margin-top: 0px; margin-left: 0px; left: 577px; top: 0px;"></canvas>
  56. </body></html>