Footer.vue 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <div>
  3. <footer class="site-footer">
  4. <div class="site-footer__upper">
  5. <div class="container">
  6. <div class="row">
  7. <div class="col-lg-3">
  8. <div class="footer-widget footer-widget__about">
  9. <img src="/assets/images/resources/logo-dark.png" width="119" alt="" class="footer-widget__logo">
  10. <p class="footer-widget__contact"><a href="tel:888-666-0000">888 666 0000</a></p>
  11. <!-- /.footer-widget__contact -->
  12. <p class="footer-widget__contact"><a href="mailto:needhelp@example.com">needhelp@example.com</a>
  13. <p class="footer-widget__contact">855 road, broklyn street <br> new york 600</p><!-- /.footer-widget__contact -->
  14. </div><!-- /.footer-widget -->
  15. </div><!-- /.col-lg-2 -->
  16. <div class="col-lg-6 d-flex justify-content-between footer-widget__links-wrap">
  17. <div class="footer-widget">
  18. <h3 class="footer-widget__title">Explore</h3><!-- /.footer-widget__title -->
  19. <ul class="footer-widget__links list-unstyled">
  20. <li><a href="#">About</a></li>
  21. <li><a href="#">Our Team</a></li>
  22. <li><a href="#">Features</a></li>
  23. <li><a href="#">Blog</a></li>
  24. <li><a href="#">How It Works</a></li>
  25. </ul><!-- /.footer-widget__links -->
  26. </div><!-- /.footer-widget -->
  27. <div class="footer-widget">
  28. <h3 class="footer-widget__title">Services</h3><!-- /.footer-widget__title -->
  29. <ul class="footer-widget__links list-unstyled">
  30. <li><a href="#">Speed Optimization </a></li>
  31. <li><a href="#">Marketing Analysis </a></li>
  32. <li><a href="#">SEO and Backlinks </a></li>
  33. <li><a href="#">Content Marketing</a></li>
  34. </ul><!-- /.footer-widget__links -->
  35. </div><!-- /.footer-widget -->
  36. <div class="footer-widget">
  37. <h3 class="footer-widget__title">Links</h3><!-- /.footer-widget__title -->
  38. <ul class="footer-widget__links list-unstyled">
  39. <li><a href="#">Help </a></li>
  40. <li><a href="#">Support </a></li>
  41. <li><a href="#">Clients </a></li>
  42. <li><a href="#">Contact</a></li>
  43. </ul><!-- /.footer-widget__links -->
  44. </div><!-- /.footer-widget -->
  45. </div><!-- /.col-lg-6 -->
  46. <div class="col-lg-3">
  47. <div class="footer-widget">
  48. <div class="site-footer__social">
  49. <a href="#" class="fa fa-facebook-square"></a>
  50. <a href="#" class="fa fa-twitter"></a>
  51. <a href="#" class="fa fa-instagram"></a>
  52. <a href="#" class="fa fa-pinterest-p"></a>
  53. </div><!-- /.site-footer__social -->
  54. </div><!-- /.footer-widget -->
  55. </div><!-- /.col-lg-4 -->
  56. </div><!-- /.row -->
  57. </div><!-- /.container -->
  58. </div><!-- /.site-footer__upper -->
  59. <div class="site-footer__bottom">
  60. <div class="container">
  61. <div class="inner-container text-center">
  62. <p class="site-footer__copy">&copy; copyright 2020 by <a href="#">Layerdrops.com</a></p>
  63. <!-- /.site-footer__copy -->
  64. </div><!-- /.inner-container -->
  65. </div><!-- /.container -->
  66. </div><!-- /.site-footer__bottom -->
  67. </footer>
  68. <a href="#" data-target="html" class="scroll-to-target scroll-to-top"><i class="fa fa-angle-up"></i></a>
  69. </div>
  70. </template>
  71. <script>
  72. export default {
  73. name: "Footer",
  74. mounted() {
  75. $(window).on('scroll', function () {
  76. if ($('.scroll-to-top').length) {
  77. var strickyScrollPos = 100;
  78. if ($(window).scrollTop() > strickyScrollPos) {
  79. $('.scroll-to-top').fadeIn(500);
  80. } else if ($(this).scrollTop() <= strickyScrollPos) {
  81. $('.scroll-to-top').fadeOut(500);
  82. }
  83. }
  84. })
  85. }
  86. }
  87. </script>
  88. <style scoped>
  89. </style>