Açıklama Yok

fanpai.js 8.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. var test = null,//定时器
  2. hasSuccess = 0,
  3. progressWidth = 20,//进度的百分比
  4. time = '',//抽奖次数
  5. // cid = '1002', imei = '352936095523931', androidId = '6c735b635fe943c852e8392152f20ac8', version = '1.5.4', secretkey = '3d0e4b94e04b8dcca1cedb9c33051173', goldCount = '', gameId = '', hasHide = false, emptyPosition = '';//空位置
  6. cid='',imei='',androidId='',version='',secretkey='3d0e4b94e04b8dcca1cedb9c33051173',goldCount='',gameId='',hasHide=false,emptyPosition='',//空位置
  7. question_id = -1,
  8. result = '',
  9. hasMove = false;
  10. $().ready(function () {
  11. getToken();
  12. adSize();//添加广告位
  13. // 先获取次数
  14. // 答对之后根据接口获取金豆数
  15. })
  16. // 广告
  17. function adSize(){
  18. taskObj.onLayoutAdSize(851,350,260,34)
  19. }
  20. function showRule() {
  21. $(".mask").show();
  22. $(".rule_content").show();
  23. $("body").attr("style","overflow:hidden");
  24. }
  25. $("button").on("click", function () {
  26. $(".mask").hide();
  27. $(".rule_content").hide();
  28. })
  29. $(".mask").on("click", function () {
  30. $(".active li").removeClass("animate");
  31. $(".active li").removeClass("rotate");
  32. $(".active li").removeClass("scale");
  33. $(".mask").hide();
  34. })
  35. $(".active li").on("click", function () {
  36. $(".all").show();
  37. $(".rule").attr("style", "z-index:0");
  38. $(".active").attr("style", "z-index:2");
  39. $(this).siblings().hide();
  40. $(this).show();
  41. $(".mask").show();
  42. $(this).addClass("animate");
  43. var that = this
  44. setTimeout(function () {
  45. $(that).addClass("rotate");
  46. }, 1500)
  47. setTimeout(function () {
  48. $(that).addClass("scale");
  49. hasMove = true;
  50. }, 4000);
  51. setTimeout(function () {
  52. result = Math.floor(Math.random() * 10) + 1;
  53. try {
  54. // 切换底部广告
  55. taskObj.checkAd(350,260);
  56. }catch(e) {
  57. }
  58. // 跳转
  59. if (result >6) {
  60. hasSuccess = 0;
  61. question_id = 1;
  62. $(".active li").removeClass("animate");
  63. $(".active li").removeClass("rotate");
  64. $(".active li").removeClass("scale");
  65. $(".mask").hide();
  66. $(".active li").show();
  67. hasMove = false
  68. $(".all").hide();
  69. $(".rule").attr("style", "z-index:2");
  70. $(".active").attr("style", "z-index:0");
  71. initGold();
  72. window.location.href=lastHref()+"/moveAgainUpload.html"
  73. }else if(result>3&&result<=6){
  74. hasSuccess = 0;
  75. question_id = 1;
  76. $(".active li").removeClass("animate");
  77. $(".active li").removeClass("rotate");
  78. $(".active li").removeClass("scale");
  79. $(".mask").hide();
  80. $(".active li").show();
  81. hasMove = false
  82. $(".all").hide();
  83. $(".rule").attr("style", "z-index:2");
  84. $(".active").attr("style", "z-index:0");
  85. initGold();
  86. taskObj.h5_adStart();
  87. } else {
  88. question_id = 1;
  89. hasSuccess = 1;
  90. $(".active li").removeClass("animate");
  91. $(".active li").removeClass("rotate");
  92. $(".active li").removeClass("scale");
  93. $(".mask").hide();
  94. $(".active li").show();
  95. hasMove = false
  96. $(".all").hide();
  97. $(".rule").attr("style", "z-index:2");
  98. $(".active").attr("style", "z-index:0");
  99. getGold();
  100. }
  101. // 广告
  102. // if (result <7) {
  103. // hasSuccess = 0;
  104. // question_id = 1;
  105. // $(".active li").removeClass("animate");
  106. // $(".active li").removeClass("rotate");
  107. // $(".active li").removeClass("scale");
  108. // $(".mask").hide();
  109. // $(".active li").show();
  110. // hasMove = false
  111. // $(".all").hide();
  112. // $(".rule").attr("style", "z-index:2");
  113. // $(".active").attr("style", "z-index:0");
  114. // initGold();
  115. // taskObj.h5_adStart();
  116. // } else {
  117. // question_id = 1;
  118. // hasSuccess = 1;
  119. // $(".active li").removeClass("animate");
  120. // $(".active li").removeClass("rotate");
  121. // $(".active li").removeClass("scale");
  122. // $(".mask").hide();
  123. // $(".active li").show();
  124. // hasMove = false
  125. // $(".all").hide();
  126. // $(".rule").attr("style", "z-index:2");
  127. // $(".active").attr("style", "z-index:0");
  128. // getGold();
  129. // }
  130. }, 6700)
  131. })
  132. function getToken() {
  133. try {
  134. var data = JSON.parse(taskObj.jsGetToken());
  135. cid = data.cid, imei = data.imei, androidId = data.androidId, version = data.version, token = data.token
  136. // 获取金币
  137. initGold();
  138. } catch (e) {
  139. token = 'e094ced38ef917b5219bd5a4f79c261011855563'
  140. initGold();
  141. }
  142. }
  143. $(".all").on("click", function () {
  144. if (hasMove) {
  145. $(".active li").removeClass("animate");
  146. $(".active li").removeClass("rotate");
  147. $(".active li").removeClass("scale");
  148. $(".mask").hide();
  149. $(".active li").show();
  150. hasMove = false
  151. $(".all").hide();
  152. $(".rule").attr("style", "z-index:2");
  153. $(".active").attr("style", "z-index:0");
  154. taskObj.h5_adStart();
  155. }
  156. })
  157. function getLast() {
  158. var test = window.location.pathname;
  159. var newTest = test.split("/")
  160. var test1 = newTest[newTest.length - 1];
  161. return window.location.host + test.replace("/" + test1, "");
  162. }
  163. function parseQueryString(variable) {
  164. var query = window.location.search.substring(1);
  165. var vars = query.split("&");
  166. for (var i = 0; i < vars.length; i++) {
  167. var pair = vars[i].split("=");
  168. if (pair[0] == variable) { return pair[1]; }
  169. }
  170. return (false);
  171. }
  172. function lastHref() {
  173. var test = window.location.pathname;
  174. var newTest = test.split("/")
  175. var test1 = newTest[newTest.length - 1];
  176. return window.location.origin + test.replace("/" + test1, "")
  177. }
  178. $(".back").on("click", function () {
  179. if (hasSuccess) {
  180. var target = lastHref() + "/taskList.html?id=" + parseQueryString("id")
  181. taskObj.h5_back(target)
  182. } else {
  183. var target = lastHref() + "/taskList.html?id=-1"
  184. taskObj.h5_back(target)
  185. }
  186. })
  187. // 金币初始化
  188. function initGold() {
  189. // hasSuccess=0
  190. var time1 = new Date().getTime();
  191. var arr = ["hasSuccess=0", "question_id=" + question_id, "type=" + parseQueryString("id"), "time=" + time1]
  192. var sign = arr.join("&")
  193. sign = md5(sign + secretkey)
  194. $.ajax({
  195. type: 'post',
  196. url: '/api/V3/getUserAdvertStatus',
  197. headers: {
  198. token: token,
  199. cid: cid,//渠道号暂时写死
  200. imei: imei,
  201. time: time1,
  202. sign: sign,
  203. androidId: androidId,
  204. },
  205. data: {
  206. type: parseQueryString("id"),
  207. hasSuccess: 0,
  208. question_id: question_id
  209. },
  210. success: function (res) {
  211. var res = JSON.parse(res)
  212. if (res && res.res.success == 1) {
  213. $(".lastTime span").text(res.res.residualCount+"次");
  214. coin = res.res.coin
  215. } else {
  216. showMsg(res.message)
  217. }
  218. },
  219. error: function () {
  220. showMsg('网络错误,请稍后再试!')
  221. }
  222. })
  223. }
  224. // 领取金币
  225. function getGold(type, id) {
  226. hasSuccess = 1
  227. var time1 = new Date().getTime();
  228. var arr = ["question_id=" + (id ? id : '-1'), "type=" + parseQueryString("id"), "time=" + time1]
  229. var sign = arr.join("&")
  230. sign = md5(sign + secretkey)
  231. $.ajax({
  232. type: 'post',
  233. url: '/api/V3/getAdvertCoin',
  234. headers: {
  235. token: token,
  236. cid: cid,//渠道号暂时写死
  237. imei: imei,
  238. time: time1,
  239. sign: sign,
  240. androidId: androidId,
  241. version: version,
  242. },
  243. data: {
  244. type: parseQueryString("id"),
  245. // hasSuccess: hasSuccess,
  246. question_id: id ? id : '-1'
  247. },
  248. success: function (res) {
  249. var res = JSON.parse(res)
  250. if (res && res.code == 0) {
  251. $(".lastTime span").text(res.res.residualCount+"次");
  252. taskObj.game_done(Number(parseQueryString("id")),Number(res.res.coin),true,Number(-1));
  253. if (type) {
  254. $(type).hide();
  255. $(type).parent().find(".active").show();
  256. }
  257. if (hasSuccess != 1) {
  258. initGold()
  259. }
  260. } else {
  261. showMsg(res.res.msg)
  262. }
  263. },
  264. error: function () {
  265. showMsg('网络错误,请稍后再试!')
  266. }
  267. })
  268. }