123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <div class="brand-one">
- <div class="container">
- <div class="brand-one__carousel owl-carousel owl-theme">
- <div class="item" v-for="(item,index) in 18" :key="index">
- <img :src="`/assets/images/resources/合作商户${index+1}.png`" alt="">
- </div><!-- /.item -->
- </div><!-- /.brand-one__carousel owl-carousel owl-theme -->
- </div><!-- /.container -->
- </div>
- </template>
- <script>
- export default {
- name: "Brands",
- mounted() {
- if ($('.brand-one__carousel').length) {
- $('.brand-one__carousel').owlCarousel({
- loop: true,
- margin: 115,
- nav: false,
- dots: false,
- autoWidth: false,
- autoplay: true,
- smartSpeed: 700,
- autoplayTimeout: 5000,
- autoplayHoverPause: true,
- responsive: {
- 0: {
- items: 2,
- margin: 30
- },
- 480: {
- items: 3,
- margin: 30
- },
- 600: {
- items: 3,
- margin: 30
- },
- 991: {
- items: 5,
- margin: 30
- },
- 1000: {
- items: 5
- },
- 1200: {
- items: 5
- }
- }
- });
- }
- }
- }
- </script>
- <style scoped>
- </style>
|