play68.js 754 B

123456789101112131415161718192021222324252627282930
  1. 
  2. function play68_init() {
  3. updateShare(0);
  4. }
  5. function goHome() {
  6. window.location.href = HOME_PATH;
  7. }
  8. function play68_submitScore(score) {
  9. updateShareScore(score);
  10. setTimeout( function() { show_share(); }, 1500 )
  11. }
  12. function updateShare(bestScore) {
  13. imgUrl = 'http://game.ikongzhong.cn/games/zuqiu/soccermoveicon.png';
  14. lineLink = 'http://game.ikongzhong.cn/games/zuqiu';
  15. descContent = "快跟我一起用手指指点足球!";
  16. updateShareScore(bestScore);
  17. appid = '';
  18. }
  19. function updateShareScore(bestScore) {
  20. if(bestScore > 0) {
  21. shareTitle = "我玩《滚滚足球》过了" + bestScore + "关,动脑的足球最好玩!";
  22. }
  23. else{
  24. shareTitle = "世界杯快到了,快来玩《滚滚足球》!动脑的足球最好玩!";
  25. }
  26. }