1.3_视图容器_swiper

Posted luwei0915

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.3_视图容器_swiper相关的知识,希望对你有一定的参考价值。

图:

技术图片

 代码:

<template>
    <view>
        <view>
            <swiper class="swiper" circular :indicator-dots="indicatorDots"
                    :autoplay="true" :interval="3000" :duration="1000">
                <swiper-item v-for="(item,index) in vList">
                    <view class="swiper-item" :style="{background:cList[index]}">{{item}}</view>
                </swiper-item>
            </swiper>
        </view>
        <view @tap=changeDots>
            点击切换切换显示原点
        </view>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                vList:["a","b","c"],
                cList:["#007AFF","#CE3C39","#FFB400"],
                indicatorDots: true,
            }
        },
        onLoad() {

        },
        methods: {
            changeDots(){
                this.indicatorDots = !this.indicatorDots;
            }
        }
    }
</script>

<style>
    .swiper{
        height: 300rpx;   /* 默认高度 */
    }
    .swiper-item{
        display: block;
        height: 300rpx;   /* 轮播图高度 */
        line-height: 300rpx;
        text-align: center;
    }
</style>

以上是关于1.3_视图容器_swiper的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序_(视图)简单的swiper容器

微信小程序之视图容器(swiper)组件创建轮播图

滑块视图容器   swiper

uniapp滑块视图容器swiper高度自适应 - 解决swiper显示不完整的问题

微信小程序组件解读和分析:swiper滑块视图

1.2_视图容器_ScrollView