play68.js 769 B

1234567891011121314151617181920212223242526272829
  1. function play68_init() {
  2. updateShare(0);
  3. }
  4. function goHome() {
  5. window.location.href = "http://game.ikongzhong.cn/games/";
  6. }
  7. function play68_submitScore(score) {
  8. updateShareScore(score);
  9. setTimeout( function() { show_share(); }, 1000 );
  10. }
  11. function updateShare(bestScore) {
  12. imgUrl = 'http://game.ikongzhong.cn/games/jgfx/static/icon.png';
  13. lineLink = 'http://game.ikongzhong.cn/games/jgfx/';
  14. descContent = "来比比看谁的手指更厉害!";
  15. updateShareScore(bestScore);
  16. appid = '';
  17. }
  18. function updateShareScore(bestScore) {
  19. if(bestScore > 0) {
  20. shareTitle = "创意游戏《激光防线》我得了" + bestScore + "分,你的手指有我的快吗?";
  21. }
  22. else{
  23. shareTitle = "创意游戏《激光防线》让你用手指画出激光线!";
  24. }
  25. }