goto.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. // $('.sec05-moblie-container').slick({
  2. // arrows: false,
  3. // slidesToShow: 1,
  4. // slidesToScroll: 1,
  5. // infinite: false,
  6. // centerMode: true,
  7. // });
  8. $(".sendbox").hide();
  9. $(document).on("click", ".collectcontent", function (event) {
  10. $(".sendbox").show(500);
  11. $(this).addClass("select");
  12. $(".select").siblings().removeClass('select');
  13. });
  14. $(document).on("click", ".close", function (event) {
  15. // $(this).siblings('.collectcard').removeClass('select');
  16. $(".sendbox").hide(500);
  17. $(".collectcontent").removeClass("select");
  18. });
  19. // 收藏頁面
  20. function collection(collectuserid='') {
  21. console.log('Call collection(' + collectuserid + ')'); // test
  22. var collectcontent = '';
  23. $.ajax({
  24. method: "GET",
  25. url: "https://ark.cards:8228/collection/" + collectuserid + "",
  26. dataType: "json",
  27. })
  28. .done(function (msg) {
  29. for (var i in msg) {
  30. for(var j in msg[i]) {
  31. collectcontent += '\
  32. <div class="collectcontent col">\
  33. <input style="display: none;" type="checkbox" value="'+ msg[i][j].id + '" name="nftid" id="' + msg[i][j].id + '">\
  34. <label for="'+ msg[i][j].id + '">\
  35. <div class="collectcard card h-100">\
  36. <a target="_blank">\
  37. <img src="'+ msg[i][j].imgurl + '"class="card-img-top" alt="...">\
  38. </a>\
  39. <div class="card-body p-2">\
  40. <a target="_blank">\
  41. <h5 class="card-title pt-3">'+ msg[i][j].title + '</h5>\
  42. </a>\
  43. <p class="card-text">\
  44. '+ msg[i][j].context + ' \
  45. </p>\
  46. <p class="card-text row">\
  47. <small class="text-muted col-6 px-1">\
  48. <img class="mb-1 mx-1 d-inline" style="width: 10px; object-fit: cover; "\
  49. src="./img/sec05/Icon awesome-ethereum.png" alt=""><span>'+ msg[i][j].cost + '</span>\
  50. </small>\
  51. <small class="price col-6 px-0 text-center">\
  52. <img class="mb-1 mx-1 d-inline" style="width: 12px; object-fit: cover; " src="./img/sec05/like.png" alt=""><sp an>'+ msg[i][j].likes + '</span></small>\
  53. </p>\
  54. </div>\
  55. </div>\
  56. </label>\
  57. </div>';
  58. }
  59. }
  60. $('.sec05-moblie-container').html(collectcontent);
  61. });
  62. }
  63. // 購買頁面
  64. function shop(collectuserid='') {
  65. console.log('Call shop(' + collectuserid + ')'); // test
  66. $.ajax({
  67. method: "GET",
  68. url: "https://ark.cards:8228/shop/" + collectuserid + "",
  69. // url: "https://ark.cards:8228/shop/Uf161c92b16f84357987a78c2b4b47719",
  70. dataType: "json",
  71. })
  72. .done(function (msg) {
  73. console.log(msg);
  74. // console.log(Object.keys(msg).length);
  75. let msgLen = Object.keys(msg).length;
  76. console.log(msgLen);
  77. var nftmall = '';
  78. var buybox = "";
  79. for (var i = 0; i < msgLen; i++) {
  80. nftmall += '\
  81. <div class="nftmall col">\
  82. <input style="display:none" type="checkbox" value="'+ msg[i].id + '" name="nftid" class="nftname" id="' + msg[i].id + '">\
  83. <label for="'+ msg[i].id + '">\
  84. <div class="collectcard card h-100">\
  85. <a target="_blank">\
  86. <img src="'+ msg[i].imgurl + '"class="card-img-top" alt="...">\
  87. </a>\
  88. <div class="card-body p-2">\
  89. <a target="_blank">\
  90. <h5 class="card-title pt-3">'+ msg[i].title + '</h5>\
  91. </a>\
  92. </div>\
  93. </div>\
  94. </label>\
  95. </div>';
  96. /*
  97. nftmall += '\
  98. <div class="nftmall col">\
  99. <input style="display:none" type="checkbox" value="'+ msg[i].id + '" name="nftid" class="nftname" id="' + msg[i].id + '">\
  100. <label for="'+ msg[i].id + '">\
  101. <div class="collectcard card h-100">\
  102. <a target="_blank">\
  103. <img src="'+ msg[i].imgurl + '"class="card-img-top" alt="...">\
  104. </a>\
  105. <div class="card-body p-2">\
  106. <a target="_blank">\
  107. <h5 class="card-title pt-3">'+ msg[i].title + '</h5>\
  108. </a>\
  109. <p class="card-text">\
  110. '+ msg[i].context + ' \
  111. </p>\
  112. <p class="card-text row">\
  113. <small class="text-muted col-6 px-1">\
  114. <img class="mb-1 mx-1 d-inline" style="width: 10px; object-fit: cover; "\
  115. src="./img/sec05/Icon awesome-ethereum.png" alt=""><span>'+ msg[i].cost + '</span>\
  116. </small>\
  117. <small class="price col-6 px-0 text-center">\
  118. <img class="mb-1 mx-1 d-inline" style="width: 12px; object-fit: cover; " src="./img/sec05/like.png" alt=""><span>'+ msg[i].likes + '</span>\
  119. </small>\
  120. </p>\
  121. </div>\
  122. </div>\
  123. </label>\
  124. </div>';
  125. */
  126. }
  127. buybox += '\
  128. <div class="p-2">\
  129. <input style="border-radius: 10px; border:none; display: none;" class="p-2 w-100 mb-3" type="text" name="userid" value="' + collectuserid + '" placeholder="請輸入您的userid" required>\
  130. <div class="text-end px-2">\
  131. <p class="text-start text-white mb-2">※一次只能購買一則NFT收藏品</p>\
  132. <button type="button" style="border:1px solid #fff; border-radius: 30px;" class="close btn text-white px-3">取消</button>\
  133. <input style="border-radius: 30px; background:#fff; border: none;" class="send-btn px-3 ms-1 py-2" type="submit" value="購買">\
  134. </div>\
  135. </div>\
  136. </div>';
  137. $('.sec06-nft-mall').html(nftmall);
  138. $('.buybox').html(buybox);
  139. });
  140. }
  141. // Qrcode頁面
  142. function get_data(collectuserid='') {
  143. console.log('Call get_data(' + collectuserid + ')'); // test
  144. $.ajax({
  145. method: "GET",
  146. url: "https://ark.cards:8228/receive/" + collectuserid + "",
  147. // url:"https://api.ptt.cx:8228/receive/Uf161c92b16f84357987a78c2b4b47719",
  148. dataType: "json",
  149. })
  150. .done(function (msg) {
  151. console.log(msg);
  152. var Qrcodeimg = '';
  153. var useraddress = '';
  154. Qrcodeimg += '\
  155. <img class="img-fluid" src="./qrcode/'+ collectuserid + '.png" alt="">\
  156. ';
  157. useraddress += '\
  158. '+ msg.useraddress + '\
  159. ';
  160. $('#Qrcode').html(Qrcodeimg);
  161. $('#copy').html(useraddress);
  162. });
  163. }
  164. // $(document).ready(function () {
  165. // // 收藏頁面
  166. // collection(collectuserid);
  167. // // 購買頁面
  168. // shop(collectuserid);
  169. // // Qrcode頁面
  170. // get_data(collectuserid);
  171. // });
  172. $(".buybox").hide();
  173. $(document).on("click", ".nftmall", function (event) {
  174. $(".buybox").show(500);
  175. $(this).addClass("select");
  176. $(".select").siblings().removeClass('select');
  177. });
  178. $(document).on("click", ".close", function (event) {
  179. // $(this).siblings('.collectcard').removeClass('select');
  180. $(".buybox").hide(500);
  181. $(".nftmall").removeClass("select");
  182. $(".nftname").prop("checked", false);
  183. });
  184. $.fn.serializeObject = function () {
  185. var o = {};
  186. var a = this.serializeArray();
  187. // o["id"] = 0;
  188. // o["time_stamp"] = "";
  189. $.each(a, function () {
  190. if (o[this.name]) {
  191. console.log(o[this.name], o[this.value]); // test
  192. if (!o[this.name].push) {
  193. o[this.name] = [o[this.name]];
  194. }
  195. o[this.name].push(this.value || '');
  196. } else {
  197. o[this.name] = this.value || '';
  198. }
  199. });
  200. return o;
  201. };
  202. // 確定發送按鈕處理
  203. $(".collect-send").submit(function (e) {
  204. /* var formRef = $('#form1').serializeArray();
  205. var jsonString = JSON.stringify(formRef);*/
  206. var jsonInfo = $('.collect-send').serializeObject();
  207. var jsonString = JSON.stringify(jsonInfo);
  208. console.log(jsonString);
  209. $.ajax({
  210. type: 'POST',
  211. url: 'https://ark.cards:8228/send',
  212. data: jsonString,
  213. dataType: 'json',
  214. async: false,
  215. success: function (data) {
  216. console.log('發送成功: ' + JSON.stringify(data));
  217. alert("發送成功");
  218. location.reload();
  219. },
  220. beforeSend: function () {
  221. console.log('beforeSend');
  222. },
  223. complete: function () {
  224. console.log('complete');
  225. },
  226. error: function (jqXHR, textStatus, errorThrown) {
  227. console.log(JSON.stringify(jqXHR));
  228. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  229. console.log('送出失敗: ' + jqXHR.responseText);
  230. }
  231. });
  232. return false;
  233. });
  234. $(".nft-buy").submit(function (e) {
  235. /* var formRef = $('#form1').serializeArray();
  236. var jsonString = JSON.stringify(formRef);*/
  237. var jsonInfo = $('.nft-buy').serializeObject();
  238. var jsonString = JSON.stringify(jsonInfo);
  239. console.log(jsonString),
  240. $.ajax({
  241. type: 'POST',
  242. url: 'https://ark.cards:8228/buy',
  243. data: jsonString,
  244. dataType: 'json',
  245. success: function (data) {
  246. console.log('購買成功: ' + data);
  247. alert("購買成功");
  248. location.reload();
  249. },
  250. beforeSend: function () {
  251. console.log('beforeSend');
  252. },
  253. complete: function () {
  254. console.log('complete');
  255. },
  256. error: function (jqXHR, textStatus, errorThrown) {
  257. console.log(JSON.stringify(jqXHR));
  258. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  259. console.log('送出失敗: ' + jqXHR.responseText);
  260. }
  261. });
  262. return false;
  263. });
  264. function copyEvent(id) {
  265. var str = document.getElementById(id);
  266. window.getSelection().selectAllChildren(str);
  267. document.execCommand("Copy")
  268. toastr.options = {
  269. // 參數設定[註1]
  270. "closeButton": false, // 顯示關閉按鈕
  271. "debug": false, // 除錯
  272. "newestOnTop": false, // 最新一筆顯示在最上面
  273. "progressBar": false, // 顯示隱藏時間進度條
  274. "positionClass": "toast-top-center", // 位置的類別
  275. "preventDuplicates": false, // 隱藏重覆訊息
  276. "onclick": null, // 當點選提示訊息時,則執行此函式
  277. "showDuration": "300", // 顯示時間(單位: 毫秒)
  278. "hideDuration": "1000", // 隱藏時間(單位: 毫秒)
  279. "timeOut": "1000", // 當超過此設定時間時,則隱藏提示訊息(單位: 毫秒)
  280. "extendedTimeOut": "1000", // 當使用者觸碰到提示訊息時,離開後超過此設定時間則隱藏提示訊息(單位: 毫秒)
  281. "showEasing": "swing", // 顯示動畫時間曲線
  282. "hideEasing": "linear", // 隱藏動畫時間曲線
  283. "showMethod": "fadeIn", // 顯示動畫效果
  284. "hideMethod": "fadeOut" // 隱藏動畫效果
  285. }
  286. toastr.success("複製成功");
  287. }