uni-app微信小程序使用Swiper实现公告滚动效果

<view class="notice" v-if="noticeList.length">
    <text class="left">系统公告</text>
    <swiper class="swiper-nav" :circular="true" vertical="true" :autoplay="true" :interval="5000" :duration="1000">
        <swiper-item style="display: table;" @touchmove.stop='stopTouchMove' v-for="(item,index) in noticeList" :key="index">
                <view style="display: table-cell;vertical-align: middle;" class="right">{{item.messageContent}}</view>                    
        </swiper-item>
    </swiper>
</view>
PS: display: table;display: table-cell;vertical-align: middle;
为了内容标题居中效果


发表评论

电子邮件地址不会被公开。 必填项已用*标注