goto.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. $('.sec05-moblie-container').slick({
  2. arrows: false,
  3. slidesToShow: 1,
  4. slidesToScroll: 1,
  5. infinite: false,
  6. centerMode: true,
  7. });
  8. console.log(1);
  9. // $(document).ready(function () {
  10. // function get_data(){
  11. // $.ajax({
  12. // method: "GET",
  13. // // url:"https://api.ptt.cx:8228/collection/""+userid+",
  14. // url:"https://api.ptt.cx:8228/collection/U176663ce100ebb1f4c404d48749decb1_test_000_000_000",
  15. // dataType: "json",
  16. // })
  17. // .done(function (msg) {
  18. // console.log(msg);
  19. // });
  20. // }
  21. // get_data();
  22. // });
  23. // console.log(location.href);
  24. $(document).ready(function () {
  25. var userid=location.search;
  26. console.log(location.search)
  27. function get_data(){
  28. $.ajax({
  29. method: "GET",
  30. url:"https://api.ptt.cx:8228/receive/"+userid+"",
  31. dataType: "json",
  32. })
  33. .done(function (msg) {
  34. console.log(msg);
  35. console.log(msg.base)
  36. var Qrcodeimg='';
  37. var useraddress='';
  38. Qrcodeimg +='\
  39. <img src="data:image/png;base64,'+msg.base+'" alt="">\
  40. ';
  41. useraddress +='\
  42. '+msg.useraddress+'\
  43. ';
  44. $('#Qrcode').html(Qrcodeimg);
  45. $('#copy').html(useraddress);
  46. });
  47. }
  48. get_data();
  49. });
  50. function copyEvent(id)
  51. {
  52. var str = document.getElementById(id);
  53. window.getSelection().selectAllChildren(str);
  54. document.execCommand("Copy")
  55. toastr.options = {
  56. // 參數設定[註1]
  57. "closeButton": false, // 顯示關閉按鈕
  58. "debug": false, // 除錯
  59. "newestOnTop": false, // 最新一筆顯示在最上面
  60. "progressBar": false, // 顯示隱藏時間進度條
  61. "positionClass": "toast-top-center", // 位置的類別
  62. "preventDuplicates": false, // 隱藏重覆訊息
  63. "onclick": null, // 當點選提示訊息時,則執行此函式
  64. "showDuration": "300", // 顯示時間(單位: 毫秒)
  65. "hideDuration": "1000", // 隱藏時間(單位: 毫秒)
  66. "timeOut": "1000", // 當超過此設定時間時,則隱藏提示訊息(單位: 毫秒)
  67. "extendedTimeOut": "1000", // 當使用者觸碰到提示訊息時,離開後超過此設定時間則隱藏提示訊息(單位: 毫秒)
  68. "showEasing": "swing", // 顯示動畫時間曲線
  69. "hideEasing": "linear", // 隱藏動畫時間曲線
  70. "showMethod": "fadeIn", // 顯示動畫效果
  71. "hideMethod": "fadeOut" // 隱藏動畫效果
  72. }
  73. toastr.success( "複製成功" );
  74. }