获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
:
KSwiper具体是怎么使用的呢?html <KSwiper :indicator-dots="indicatorDots" :circular="circularFlag" :autoplay="autoplay" :duration="duration" :interval="interval" > <KSwiperItem v-for="(item, index) in background" :key="index"> <KView :class="'swiper-item ' + item" /> </KSwiperItem> </KSwiper> css .swiper-item { height: 200px; width: 100%; } .three { background: green; } .two { background: yellow; } .one { background: red; } js background: ['one', 'two', 'three'], 我是根据官网的例子来写的,最后出来的效果是这样的。不懂这个东西具体怎么用?可以写个比较全一点的案例吗?谢谢 效果图如下: [图片] 我觉得是KSwiper没有设置高度,结果我设置了高度,还是一样的效果。请指点一下,谢谢
2020-07-31