You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aboutTimeshareCarouselSection.vue 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <section id="intro">
  3. <div class="container">
  4. <div class="row">
  5. <div align="left" class="col-sm-12 col-md-8">
  6. <div class="intro-content box">
  7. <h2>About Timeshare Resales</h2>
  8. <p>
  9. Uni-Vate Properties found that there was a desperate need for a reputable source for
  10. buyers and sellers to turn to with their timeshare needs in South Africa.
  11. </p>
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16. <carousel
  17. :nav="false"
  18. :dots="false"
  19. :items="1"
  20. :autoplay="true"
  21. :loop="true"
  22. id="intro-carousel"
  23. style="margin-top:-50px"
  24. :responsive="{ 0: { items: 1, nav: false }, 600: { items: 1, nav: false } }"
  25. >
  26. <img
  27. class="item"
  28. src="/img/intro-carousel/timeshare-1.jpg"
  29. style="object-fit: cover"
  30. alt=""
  31. />
  32. <img
  33. class="item"
  34. src="/img/intro-carousel/timeshare-2.jpg"
  35. style="object-fit: cover"
  36. alt=""
  37. />
  38. <img
  39. class="item"
  40. src="/img/intro-carousel/timeshare-3.jpg"
  41. style="object-fit: cover"
  42. alt=""
  43. />
  44. <img
  45. class="item"
  46. src="/img/intro-carousel/timeshare-4.jpg"
  47. style="object-fit: cover"
  48. alt=""
  49. />
  50. <img
  51. class="item"
  52. src="/img/intro-carousel/timeshare-5.jpg"
  53. style="object-fit: cover"
  54. alt=""
  55. />
  56. <img
  57. class="item"
  58. src="/img/intro-carousel/timeshare-6.jpg"
  59. style="object-fit: cover"
  60. alt=""
  61. />
  62. </carousel>
  63. <div id="intro-carousel" class="owl-carousel"></div>
  64. </section>
  65. </template>
  66. <script>
  67. /* eslint-disable */
  68. import carousel from "vue-owl-carousel";
  69. export default {
  70. components: {
  71. carousel
  72. }
  73. };
  74. </script>
  75. <style lang="scss" scoped></style>