index.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>街头篮球</title>
  6. <meta charset="utf-8">
  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-capable" content="yes">
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  10. <link rel="stylesheet" type="text/css" href="webfont/stylesheet.css">
  11. <style type="text/css">
  12. body {
  13. background-color: #000;
  14. margin: 0;
  15. padding: 0;
  16. }
  17. * {
  18. user-select: none;
  19. }
  20. * {
  21. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  22. -webkit-touch-callout: none;
  23. }
  24. #wrapper {
  25. position: absolute;
  26. overflow: hidden;
  27. left: 0;
  28. top: 0;
  29. z-index: 0;
  30. width: 10000px;
  31. }
  32. #gameCanvas {
  33. position: absolute;
  34. left: 0;
  35. top: 0;
  36. width: 100%;
  37. height: 100%;
  38. image-rendering: optimizeSpeed;
  39. -ms-interpolation-mode: nearest-neighbor;
  40. -webkit-optimize-contrast;
  41. z-index: 100;
  42. }
  43. #swipeToFullscreen {
  44. position:absolute;
  45. top:0px;
  46. right: 0px;
  47. display: none;
  48. background-color: #00000;
  49. width: 150px;
  50. height: 350px;
  51. min-height: 350px;
  52. background-image: url('./preloaderHD/swipe.png');
  53. background-repeat: no-repeat;
  54. }
  55. </style>
  56. <style>#sg-loadscrn{
  57. position:fixed; top:0;left:0;width:100%; height:100%; background-color:#fff; z-index:9999;
  58. }
  59. #sg-spinner{
  60. position: absolute; width: 150px; height: 50px; top:50%; left:50%; margin-top:-25px; margin-left:-75px;
  61. background-image: url('./assets/sg-loader.gif');
  62. }
  63. #sg-spinner.no-img{
  64. background: #ffffff;
  65. }
  66. #sg-loadtext{
  67. position:absolute;
  68. font-family: sans-serif;
  69. top:50%; left:50%;
  70. width: 250px;
  71. margin-left:-125px;
  72. margin-top:-125px;
  73. text-align:center;
  74. line-height:150%;
  75. font-size:16px;
  76. }</style>
  77. <script type="text/javascript" src="http://static.play68.com/js/play68_sdk.js"></script>
  78. <script language="javascript" type="text/javascript" ></script>
  79. <script type="text/javascript">
  80. window.gameLangs = ['en', 'de', 'es', 'fr', 'it', 'pt', 'ru', 'tr'];
  81. window.gameJS = ['softgames_game.js'];
  82. window.gameOnLoadScript = "windowOnload();";
  83. </script>
  84. <script type="text/javascript" src="./assets/softgames-1.1.js">
  85. </script><script type="text/javascript" src="./assets/sg.hooks.js"></script>
  86. </head>
  87. <body>
  88. <div id="wrapper"></div>
  89. </body>
  90. </html>