button.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!-- 右下角按鈕區塊 -->
  2. <div class="btn-box text-center">
  3. <button data-gt-target="#top" data-gt-duration="100" data-gt-offset="0" class="btn-gotop" title="GoTop">
  4. <!-- <span class="top_img"></span> -->
  5. <img src="./hhh_index/images/icon/feather-chevron-right.svg" alt="">
  6. </button>
  7. <button title="為我推薦設計師" class="d-none d-md-inline">
  8. <a href="https://hhh.com.tw/about/request/" target="_blank">
  9. <img src="./hhh_index/images/icon/feather-file-text.svg" alt="">
  10. </a>
  11. </button>
  12. <button title="裝修預算評估" class="d-none d-md-inline">
  13. <a href="https://hhh.com.tw/about/contact/" target="_blank">
  14. <img src="./hhh_index/images/icon/ionic-ios-calculator.svg" alt="" style="width: 22px; margin-left: 3px;">
  15. </a>
  16. </button>
  17. <button title="+好物商城" class="d-none d-md-inline">
  18. <a href="https://shop.hhh.com.tw/" target="_blank">
  19. <img src="./hhh_index/images/icon/feather-shopping-cart.svg" alt="">
  20. </a>
  21. </button>
  22. <!-- 暫時隱藏 -->
  23. <!-- <button title="線上諮詢">
  24. <a href="https://hhh.com.tw/about/contact/" target="_blank">
  25. <img src="./images/icon/simple-hipchat.svg" alt="">
  26. </a>
  27. </button> -->
  28. </div>
  29. <script>
  30. $(".btn-gotop").click(() => {
  31. $("html, body").animate(
  32. {
  33. scrollTop: 0,
  34. }, 0
  35. );
  36. });
  37. </script>