play68.js 782 B

123456789101112131415161718192021222324
  1. function play68_init() {
  2. updateShare(0);
  3. }
  4. function play68_submitScore(score) {
  5. updateShareScore(score);
  6. Play68.shareFriend();
  7. //setTimeout( function() { Play68.shareFriend(); }, 1000 )
  8. }
  9. function updateShare(score) {
  10. var descContent = "全民追公车";
  11. if(score>0)
  12. shareTitle = "全国各地人民追公交的正确方式!我帮助"+score+"个人追上了公交。";
  13. else
  14. shareTitle = "全国各地人民追公交的正确方式!你知道吗?"
  15. document.title = shareTitle;
  16. appid = '';
  17. Play68.setShareInfo(shareTitle,descContent);
  18. }
  19. function updateShareScore(score) {
  20. updateShare(score);
  21. }
  22. function play68_goHome(){
  23. parent.location.href="http://mp.weixin.qq.com/s?__biz=MzI4MjA2MjE0MQ==&mid=246005295&idx=1&sn=490f8141976d607ba079d48f52a3fcd7#rd"
  24. }