footer.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <footer class="footer position-relative">
  2. <div class="container">
  3. <div class="row">
  4. <div class="col-xs-12 col-sm-6 px-0">
  5. <img src="https://i.imgur.com/P1gNopa.png" alt="" style="width: 100%; max-width: 250px;">
  6. <div class="footer-aigirl">ChoozMo AIGV</div>
  7. <div class="footer-follow">關注我們</div>
  8. <div class="footer-socials">
  9. <a href="https://www.linkedin.com/company/choozmo/">
  10. <img src="https://i.imgur.com/qnd9QrT.png" alt="" width="32px" height="32px">
  11. </a>
  12. <a href="https://www.facebook.com/choozmo/">
  13. <img src="https://i.imgur.com/WdCAhSo.png" alt="" width="48px" height="48px">
  14. </a>
  15. <a href="https://line.me/R/ti/p/@choozmo?from=page">
  16. <img src="https://i.imgur.com/dNZ2aGW.png" alt="" width="32px" height="32px">
  17. </a>
  18. <a href="https://www.instagram.com/choozmo_cmm/">
  19. <img src="https://i.imgur.com/pdJPY7m.png" alt="" width="60px" height="60px"
  20. style="margin-left: -6px; margin-right: -8px;">
  21. </a>
  22. <a href="https://twitter.com/ai_cmm">
  23. <img src="https://i.imgur.com/qGBzq4J.png" alt="" width="32px" height="28px" style="margin-right: 3px;">
  24. </a>
  25. <a href="https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg">
  26. <img src="https://i.imgur.com/zn6DUY8.png" alt="" width="38px" height="38px">
  27. </a>
  28. </div>
  29. </div>
  30. <div class="col-xs-12 col-sm-6">
  31. <div class="footer-contacts">
  32. <h5>CONTACT</h5>
  33. <div>
  34. 集仕多股份有限公司<br>新竹縣竹北市復興二路229號9樓之9<br>聯絡電話:<a
  35. href="tel:+886036670804">036670804</a><br>聯絡信箱:SERVICE@CHOOZMO.COM
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. <!-- LINE 按鈕 -->
  42. <div class="line-btn">
  43. <a href="https://lin.ee/jYalbZq" target="_blank">
  44. <img src="/imgs/icon/line.png" alt="">
  45. </a>
  46. </div>
  47. <div class="privacy-consent">
  48. <p>本網站使用 Cookie 為您提供更好的用戶體驗。<br>
  49. 繼續使用本網站表示您同意我們的<a href="/privacy-policy">隱私權政策</a>。</p>
  50. <button class="agree">同意</button>
  51. </div>
  52. </footer>
  53. <script src="//code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
  54. crossorigin="anonymous"></script>
  55. <script>
  56. // 隱私權政策
  57. let privacy = localStorage.getItem("privacy");
  58. if (privacy === "false") {
  59. $('.privacy-consent').hide();
  60. } else {
  61. $('.privacy-consent').show();
  62. }
  63. $('.privacy-consent .agree').click(function (e) {
  64. e.preventDefault();
  65. $('.privacy-consent').hide();
  66. localStorage.setItem('privacy', 'false');
  67. })
  68. function setUTM() {
  69. // 取當前網址路徑
  70. let currentPath = window.location.pathname;
  71. console.log('currentPath', currentPath);
  72. let utmCampaign = ""; // utm 參數
  73. if (currentPath === "/virtual-host-solution/") {
  74. // AI 主持人
  75. utmCampaign = "AIGV";
  76. } else if (currentPath === "/AI-chatbot/") {
  77. // AI 客服
  78. utmCampaign = "AICUSTOMER";
  79. } else if (currentPath === "/ai-balanced-news-reporting/") {
  80. // AI 記者
  81. utmCampaign = "AICOPYWRITER";
  82. }
  83. let lineLink = $('a[href="https://lin.ee/jYalbZq"]');
  84. let originalHref = lineLink.attr('href');
  85. let newHref = originalHref + `?utm_source=web&utm_medium=article&utm_campaign=${utmCampaign}`;
  86. lineLink.attr('href', newHref);
  87. }
  88. setUTM();
  89. </script>