码迷,mamicode.com
首页 > 微信 > 详细

小程序 纵向轮播 显示3列 每次滚动一个效果

时间:2020-07-06 19:45:33      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:alt   wip   mamicode   white   ace   滚动   direct   tle   val   

wxml

<view class="swiper-view">
 <swiper next-margin="100rpx"  previous-margin="100rpx" class="swiper_container" vertical="true" autoplay="true" circular="true" interval="2000">
  <block wx:for="{{msgList}}">
   <swiper-item>
    <view class="swiper_item">{{item.title}}</view>
   </swiper-item>
  </block>
 </swiper>
</view>

wxss

.swiper-view{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 5rpx;
  background: tomato
 }
 .swiper_container {
  height: 300rpx;
  width: 90%;
 }
  
 .swiper_item {
  height: 50rpx;
  width: 90%;
  font-size: 26rpx;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white
 }

js

Page({
  data: {
     msgList: [
      { title: "朋友圈" },
      { title: "文章" },
      { title: "公共号" },
      { title: "小程序" },
      { title: "音乐" },
      { title: "表情" },
      { title: "订阅号" }
   ]
 }
})

技术图片

 

小程序 纵向轮播 显示3列 每次滚动一个效果

标签:alt   wip   mamicode   white   ace   滚动   direct   tle   val   

原文地址:https://www.cnblogs.com/yaoling/p/13256219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!