index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>进击的方块</title>
  6. <link rel="icon" type="image/GIF" href="res/favicon.ico"/>
  7. <meta name="apple-mobile-web-app-capable" content="yes"/>
  8. <meta name="full-screen" content="yes"/>
  9. <meta name="screen-orientation" content="portrait"/>
  10. <meta name="x5-fullscreen" content="true"/>
  11. <meta name="360-fullscreen" content="true"/>
  12. <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  13. <script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
  14. <style>
  15. body, canvas, div {
  16. -moz-user-select: none;
  17. -webkit-user-select: none;
  18. -ms-user-select: none;
  19. -khtml-user-select: none;
  20. -webkit-tap-highlight-color: rgba(51, 51, 51, 255);
  21. }
  22. #ad_container{
  23. position:fixed;
  24. left:0;
  25. bottom:0;
  26. z-index:999;
  27. background-color:#000;
  28. width:100%;
  29. overflow:hidden;
  30. }
  31. </style>
  32. </head>
  33. <body style="padding:0; margin: 0; background:#000;">
  34. <canvas id="gameCanvas" width="640" height="1008"></canvas>
  35. <div id="ad_container"></div>
  36. <script type="text/javascript">(function(){
  37. //updateShare(0);
  38. })();</script>
  39. <script src="game.min.js"></script>
  40. <script type="text/JavaScript">
  41. window.shareData={
  42. 'title':'进击的方块',
  43. 'link':'http://game.ikongzhong.cn/games/jjdfk/',
  44. 'imgurl':'http://game.ikongzhong.cn/games/jjdfk/icon.png'
  45. }
  46. window.shareFriendData={
  47. 'title':'进击的方块',
  48. 'content':'关注空中传媒网络科技,更多好玩的游戏等着你。',
  49. 'link':'http://game.ikongzhong.cn/games/jjdfk/',
  50. 'imgurl':'http://game.ikongzhong.cn/games/jjdfk/icon.png'
  51. }
  52. </script>
  53. <script type="text/JavaScript" src="http://gc.veiying.cn/code"></script>
  54. </body>
  55. </html>