index.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  5. <meta http-equiv="pragma" content="no-cache"/>
  6. <meta name="apple-mobile-web-app-capable" content="yes" />
  7. <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
  8. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  9. <meta charset="utf-8"/>
  10. <title>极限超车</title>
  11. <style>
  12. * {
  13. user-select: none;
  14. touch-select: none;
  15. touch-action: none;
  16. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  17. -webkit-touch-callout: none;
  18. -webkit-user-select: none;
  19. -moz-user-select: none;
  20. -ms-user-select: none;
  21. -ms-touch-select: none;
  22. -ms-touch-action: none;
  23. }
  24. body {
  25. background: #222;
  26. color:#cccccc;
  27. margin: 0px;
  28. padding: 0px;
  29. border: 0px;
  30. }
  31. canvas {
  32. image-rendering: optimizeSpeed;
  33. margin: 0px;
  34. padding: 0px;
  35. border: 0px;
  36. }
  37. :-webkit-full-screen #canvas {
  38. width: 100%;
  39. height: 100%;
  40. }
  41. div.gm4html5_div_class
  42. {
  43. margin: 0px;
  44. padding: 0px;
  45. border: 0px;
  46. }
  47. /* START - Login Dialog Box */
  48. div.gm4html5_login
  49. {
  50. padding: 20px;
  51. position: absolute;
  52. border: solid 2px #000000;
  53. background-color: #404040;
  54. color:#00ff00;
  55. border-radius: 15px;
  56. box-shadow: #101010 20px 20px 40px;
  57. }
  58. div.gm4html5_cancel_button
  59. {
  60. float: right;
  61. }
  62. div.gm4html5_login_button
  63. {
  64. float: left;
  65. }
  66. div.gm4html5_login_header
  67. {
  68. text-align: center;
  69. }
  70. /* END - Login Dialog Box */
  71. :-webkit-full-screen {
  72. width: 100%;
  73. height: 100%;
  74. }
  75. </style>
  76. </head>
  77. <body>
  78. <div class="gm4html5_div_class" id="gm4html5_div_id">
  79. <!-- Create the canvas element the game draws to -->
  80. <canvas id="canvas" width="320" height="480">
  81. <p>Your browser doesn't support HTML5 canvas.</p>
  82. </canvas>
  83. </div>
  84. <!-- Run the game code -->
  85. <script type="text/javascript" src="speedtrip/Speed Trip.js?ZMLZB=627680357"></script>
  86. </body>
  87. </html>