Safari浏览器不支持V型轮播?

时间:2020-04-07 07:06:27

标签: vue.js vuetify.js

Safari浏览器不支持V型轮播吗?

<v-carousel
      hide-delimiters
      :cycle="true"
      :interval="duration"
      class="elevation-0"
      v-model="carouselIndex"
    >
      <v-carousel-item
        reverse-transition="none"
        class="carouselTrans"
        v-for="(img, i) in orderedImages"
        :src="`${apiurl}api/v1/assets/CPM/${img.image}/image`"
        :key="i"
        lazy-src="https://picsum.photos/id/11/10/6"
      >
        <v-flex class="imageSlideCount" v-if="!$vuetify.breakpoint.xs">
          <span class="title">{{i+1}}/{{orderedImages.length}}</span>
        </v-flex>
        <v-layout wrap>
          <v-flex xs12 class="carouselTitle bounceInRightTitle">
            <span v-html="current.title"></span>
          </v-flex>
          <v-flex xs10 class="carouselDescription bounceInRightDesc">{{current.description}}</v-flex>
        </v-layout>
      </v-carousel-item>
</v-carousel>

0 个答案:

没有答案
相关问题