微信小程序swiper组件切换+个人资料展示

这篇文章的主题就是swiper啦,不过swiper在真机上有个不好的点就是页面切换时会有闪烁回弹的感觉,不知道如何处理,希望有知道如何处理的小伙伴可以给出一些指导意见。那还是先来看看正常的切换吧,这篇主要是为了记录swiper的前后边距的使用。

先看一下常用的一些属性
image.png

这些属性还是比较常用的

看一下演示效果

swiper+个人资料切换.gif

  • WXML

<view style="height:{{maxHeight}}px" class='page'>
<!-- 参数详见 https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html -->
  <swiper class='swiperClass' indicator-color="#a39f99" indicator-active-color="#f49641" 
indicator-dots interval="2000" duration="1000" previous-margin="{{margin}}px" 
next-margin="{{margin}}px" circular bindchange="bindchange" display-multiple-items="1"
    style="height:{{maxHeight}}px">
    <block wx:for="{{list}}" wx:key="{{index}}">
      <swiper-item>
        <view style='width:{{swiperItemWidth}}px;height:{{swiperItemHeigth}}px' 
class="user {{swiperIndex == index ? 'active' : 'quiet'}}">
          <view class='top'>
            <view class='person_info'>
              <image class='user_avatar' src="{{item.img}}"></image>
              <view class='user_name'>{{item.name}}</view>
            </view>
          </view>
          <view>
            <view class="one-line">出生年月 : {{item.birth}}</view>
            <view class="one-line">性别 : {{item.sex}}</view>
            <view class="one-line">毕业院校 : {{item.graduate}}</view>
            <view class="one-line">专业 : {{item.professional}}</view>
            <view class="one-line">毕业时间 : {{item.graduateTime}}</view>
             <view class="one-line">籍贯 : {{item.nativePlace}}</view>
             <view class="one-line">邮箱 : {{item.email}}</view>
          </view>
        </view>
      </swiper-item>
    </block>
  </swiper>
</view>
  • WXSS
page {
  height: 100%;
  background: #f3f3f3;
  position: relative;
}
.entire-module {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.swiperClass {
  margin: 0;
}
.user {
  position: relative;
  background: #f9f9f9;
  z-index: -2;
}
.active {
  transform: none;
  transition: all 0.2s ease-in 0s;
}
.quiet {
  transform: scale(0.9);
  transition: all 0.2s ease-in 0s;
}
.top {
  position: relative;
  width: 100%;
  height: 198rpx;
  background:#B0C4DE;
}
.user_avatar {
  width: 120rpx;
  height: 120rpx;
  background: rgb(226, 222, 222);
  margin-right: 20rpx;
}
.person_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 40rpx;
}
.person_info>view {
  flex: 1;
  height: 120rpx;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 30rpx;
}
.one-line{
  font-size: 30rpx;
  margin-top: 2.6vh;
  padding-left: 3vw;
  /* padding: 1vh 3vw; */
}
  • JS

Page({
  data: {
    list: [{
        img: "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1562746384&di=79b1c4202963a9b02db57e30d8986824&imgtype=jpg&er=1&src=http%3A%2F%2Fgss0.baidu.com%2F-4o3dSag_xI4khGko9WTAnF6hhy%2Fbainuo%2Fcrop%3D0%2C0%2C1130%2C1225%3Bw%3D640%3Bq%3D84%2Fsign%3D9858a73cdd09b3defff0be28f18f40b1%2F8718367adab44aede065beb0bf1c8701a18bfbbf.jpg",
        name: "张舒雅",
        birth: "1996年5月12日",
        sex:'女',
        graduate:"华东师范大学",
        professional:"软件工程",
        graduateTime:"2018年6月30日",
        nativePlace:"广东省广州市",
        email:"1174569803@qq.com" 
      },
      {
        img: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1562746427&di=d5f55b69d6fa62495fdd3b53d3efe56e&imgtype=jpg&er=1&src=http%3A%2F%2Fci.xiaohongshu.com%2Ff8098da8-b162-4b96-ba5a-86135475ca81%40r_750w_750h_ss1.jpg',
        name: "李思琦",
        birth: "1994年10月26日",
        sex: '女',
        graduate:"南京财经大学",
        professional: "计算机科学与技术",
        graduateTime: "2016年6月30日",
        nativePlace: "河南省安阳市",
        email: "2648569803@qq.com" 
      },
      {
        img: 'http://imgsrc.baidu.com/forum/w=580/sign=1598364951ee3d6d22c687c373176d41/1e4ebe096b63f6242fc51ced8f44ebf81b4ca311.jpg',
        name: "刘栋",
        sex: '男',
        birth: "1993年4月29日",
        graduate:"哈尔滨工业大学",
         professional: " 数字媒体技术",
        graduateTime: "2015年6月30日",
        nativePlace: "黑龙江哈尔滨市",
        email: "1462751065@qq.com" 
      }

    ],
    swiperIndex: 0, //这里不写第一次启动展示的时候会有问题
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    var that = this;
    wx.getSystemInfo({
      success: function(res) {
        console.log(res);
        var swiperItemWidth = parseInt(res.windowWidth * 6 / 7);
        console.log(swiperItemWidth)
        var swiperItemHeigth = parseInt(swiperItemWidth / 2 * 3);
        var margin = parseInt((res.windowWidth - swiperItemWidth) / 2);
        that.setData({
          margin: margin,
          swiperItemHeigth: swiperItemHeigth,
          swiperItemWidth: swiperItemWidth,
          maxHeight: parseInt(swiperItemWidth / 0.62)
        })
        console.log('打印最大高度', that.data.maxHeight)
      },
    })
  },
  //轮播切换
  bindchange(e) {
    this.setData({
      swiperIndex: e.detail.current
    })
  },
})
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容

  • create by jsliang on 2018-9-17 17:58:56 Recently revised...
    梁_飘阅读 1,579评论 0 6
  • 每天的学习记录,可能有的地方写的不对,因为刚学,以后发现错的话会回来改掉整体流程 https://develope...
    有点健忘阅读 4,642评论 0 7
  • 以及到现在还有很多市场的棍棒教育,依旧有一大批群体认可“棍棒底下出孝子”,何谓孝子?好像儒家传统中,有一种人一直备...
    唐铭含阅读 315评论 0 1
  • 亲爱的老公:早上早早起来去陪伴奶奶接奶奶回家。辛苦了。每到周末最爱睡懒觉的你关键时刻特别给力。孝顺的老公好有爱。 ...
    智慧天天阅读 197评论 0 0
  • 上午到碧峰峡景区,熊猫还没入场,便是各种熊猫玩具,衣服鞋包和玩具娃娃的轰炸。看看天,白银色的云烟带着杀气似的...
    李安灼阅读 383评论 0 0