微信小程序仿QQ头像轮播效果

1、效果图

2、效果流程分析

1、第1个头像大小从1到0缩小的同时,第2个头像左移

2、上面动画结束后,延迟50ms,第3个头像从0到1放大

3、把头像列表顺序前移一位,并重置轮播状态,以此达到一个循环。然后继续第一个步骤

3、源码

组件使用

xml 复制代码
<AvatarsBanner avatars="{{avatars}}" />

index.wxml

xml 复制代码
<view
  class="avatarList"
  style="width:{{itemWidth*3-overlapWidth*2}}rpx;"
>
  <!-- 备注:微信小程序经测试,即使不渲染的元素也要添加到节点上,否则第3个的放大动画不会展示 -->
  <image
    src="{{item}}"
    animation="{{index===0?firstAnimation:(index===1?secondAnimation:(index===2?lastAnimation:''))}}"
    wx:for="{{avatars}}"
    wx:key="index"
    style="left: {{(itemWidth-overlapWidth)*index}}rpx; z-index: {{avatars.length-index}};width:{{itemWidth}}rpx;height:{{itemWidth}}rpx;"
    class="avatarImage {{index>2 && 'hidden'}}"
  />
</view>

index.js

js 复制代码
const animalTime = 200; // 动画时间
const intervalTime = 1000; // 定时器频率

Component({
  properties: {
    // 头像列表
    avatars: {
      type: Array,
      value: [],
      observer(newVale) {
        this.interval && clearInterval(this.interval);
        this.startAnimation();
      },
    },
    style: {
      type: String,
      value: '',
    },
    // 图片宽度:rpx
    itemWidth: {
      type: Number,
      value: 36,
    },
    // 重叠部分宽度:rpx
    overlapWidth: {
      type: Number,
      value: 10,
    },
  },
  data: {},
  methods: {
    startAnimation() {
      const { avatars } = this.data;
      const { itemWidth, overlapWidth } = this.properties;
      if (avatars.length < 3) {
        return;
      }
      // 创建animation对象
      this.firstAnimation = wx.createAnimation();
      this.secondAnimation = wx.createAnimation();
      this.lastAnimation = wx.createAnimation();

      this.interval = setInterval(() => {
        // num1缩放动画
        this.firstAnimation.scale(0).step({ duration: animalTime });
        this.setData({
          firstAnimation: this.firstAnimation.export(),
        });

        // num2、num3平移动画(除以2是rpx转px)
        const offsetX = (overlapWidth - itemWidth)/2;
        this.secondAnimation.translate(offsetX, 0).step({ duration: animalTime });
        this.lastAnimation.translate(offsetX, 0).step({ duration: animalTime });
        this.setData({
          secondAnimation: this.secondAnimation.export(),
          lastAnimation: this.lastAnimation.export(),
        });

        // num3放大动画(animalTime + 50:表示前面两个动画结束,并且setData数据更新)
        setTimeout(() => {
          this.lastAnimation.scale(1).step({ duration: animalTime });
          this.setData({
            lastAnimation: this.lastAnimation.export(),
          });
        }, animalTime + 50);

        // 还原动画 (等待缩小动画完成后再切换头像)
        setTimeout(() => {
          this.firstAnimation.scale(1).step({
            duration: 0,
          });
          this.secondAnimation.translate(0, 0).step({
            duration: 0,
          });
          this.lastAnimation.translate(0, 0).scale(0).step({
            duration: 0,
          });
          this.setData({
            avatars: avatars.slice(1).concat(avatars[0]),
            lastAnimation: this.lastAnimation.export(),
            firstAnimation: this.firstAnimation.export(),
            secondAnimation: this.secondAnimation.export(),
          });
        }, animalTime);
      }, intervalTime);
    },
  },
});

index.wxss

css 复制代码
.avatarList {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100%;
}

.avatarImage {
  position: absolute;
  border: 1rpx solid #ffffff;
  border-radius: 50%;

  /* 占位图 */
  background-image: url('https://xm-1301527776.cos.ap-shanghai.myqcloud.com/images/miniprogram/channel/Post/ic_default_header.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f6f6f6;
  background-size: cover;
}

.hidden {
  display: none;
}
相关推荐
风等雨归期40 分钟前
【python】【绘制小程序】动态爱心绘制
开发语言·python·小程序
李宥小哥2 小时前
微信小程序07-开发进阶
微信小程序·小程序·notepad++
艾小逗3 小时前
uniapp快速入门教程,内容来源于官方文档,仅仅记录快速入门需要了解到的知识点
小程序·uni-app·app·es6
程序员阿龙3 小时前
【2025】儿童疫苗接种预约小程序(源码+文档+解答)
小程序·毕业设计·小程序开发·预约小程序·疫苗管理小程序·出勤数据分析·智能考勤
818源码资源站3 小时前
表情包创作、取图小程序端(带流量主)
小程序
2401_8459375313 小时前
PHP一键约课高效健身智能健身管理系统小程序源码
微信·微信小程序·小程序·微信公众平台·微信开放平台
程序员入门进阶15 小时前
基于微信小程序的科创微应用平台设计与实现+ssm(lw+演示+源码+运行)
微信小程序·小程序
计算机源码社1 天前
分享一个基于微信小程序的居家养老服务小程序 养老服务预约安卓app uniapp(源码、调试、LW、开题、PPT)
android·微信小程序·uni-app·毕业设计项目·毕业设计源码·计算机课程设计·计算机毕业设计开题
DreamByte1 天前
Python Tkinter小程序
开发语言·python·小程序
说私域1 天前
开源 AI 智能名片小程序:开启内容营销新境界
人工智能·小程序