|
@@ -1,4 +1,4 @@
|
|
|
-<footer class="footer">
|
|
|
+<footer class="footer position-relative">
|
|
|
<div class="container">
|
|
|
<div class="row">
|
|
|
<div class="col-xs-12 col-sm-6 px-0">
|
|
@@ -8,15 +8,16 @@
|
|
|
<div class="footer-socials">
|
|
|
<a href="https://www.linkedin.com/company/choozmo/">
|
|
|
<img src="https://i.imgur.com/qnd9QrT.png" alt="" width="32px" height="32px">
|
|
|
- </a>
|
|
|
+ </a>
|
|
|
<a href="https://www.facebook.com/choozmo/">
|
|
|
<img src="https://i.imgur.com/WdCAhSo.png" alt="" width="48px" height="48px">
|
|
|
- </a>
|
|
|
+ </a>
|
|
|
<a href="https://line.me/R/ti/p/@choozmo?from=page">
|
|
|
<img src="https://i.imgur.com/dNZ2aGW.png" alt="" width="32px" height="32px">
|
|
|
</a>
|
|
|
<a href="https://www.instagram.com/choozmo_cmm/">
|
|
|
- <img src="https://i.imgur.com/pdJPY7m.png" alt="" width="60px" height="60px" style="margin-left: -6px; margin-right: -8px;">
|
|
|
+ <img src="https://i.imgur.com/pdJPY7m.png" alt="" width="60px" height="60px"
|
|
|
+ style="margin-left: -6px; margin-right: -8px;">
|
|
|
</a>
|
|
|
<a href="https://twitter.com/ai_cmm">
|
|
|
<img src="https://i.imgur.com/qGBzq4J.png" alt="" width="32px" height="28px" style="margin-right: 3px;">
|
|
@@ -36,9 +37,36 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- LINE 按鈕 -->
|
|
|
<div class="line-btn">
|
|
|
<a href="https://lin.ee/jYalbZq" target="_blank">
|
|
|
<img src="/imgs/icon/line.png" alt="">
|
|
|
</a>
|
|
|
</div>
|
|
|
-</footer>
|
|
|
+
|
|
|
+ <div class="privacy-consent">
|
|
|
+ <p>本網站使用 Cookie 為您提供更好的用戶體驗。<br>
|
|
|
+ 繼續使用本網站表示您同意我們的<a href="/privacy-policy">隱私權政策</a>。</p>
|
|
|
+ <button class="agree">同意</button>
|
|
|
+ </div>
|
|
|
+</footer>
|
|
|
+
|
|
|
+<script src="//code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
|
|
|
+ crossorigin="anonymous"></script>
|
|
|
+<script>
|
|
|
+ // 隱私權政策
|
|
|
+ let privacy = localStorage.getItem("privacy");
|
|
|
+
|
|
|
+ if (privacy === "false") {
|
|
|
+ $('.privacy-consent').hide();
|
|
|
+ } else {
|
|
|
+ $('.privacy-consent').show();
|
|
|
+ }
|
|
|
+
|
|
|
+ $('.privacy-consent .agree').click(function (e) {
|
|
|
+ e.preventDefault();
|
|
|
+ $('.privacy-consent').hide();
|
|
|
+ localStorage.setItem('privacy', 'false');
|
|
|
+ })
|
|
|
+</script>
|