小程序for循环出来的button,点击button的动画实现只对当前button有效

在做项目中发现在对for循环出来的button,添加点击事件的时候,所有button都会生效,那怎么实现只对当前的button有效呢?看下我实现的思路吧。有不明白的可以留言哈
效果图如下
这里写图片描述

wxml:

 <view wx:for="{{arr}}">
    <button bindtouchstart="ww" bindtouchend="ee" style='background:red;with:200rpx;height:200rpx;text-algin:center;margin-top:50rpx;' animation="{{arr1[0]&&arr1[0] == index ? animationData:''}}" data-item="{{index}}">按钮</button>
</view>
/***判断当新数组的值等于当前下标时才添加此动画就实现了只对当前动画有效了哦***/
/*** wx:for-index 指明后面如果要用数组索引的话,用什么名字,如果名字是 index,则可省略,直接使用。
而 wx:for-item 指明后面如果要用数组索引对应的项的话,用什么名字,如果名字是 item,则可省略,直接使用。***/

js

data:{
 arr:[1,2,3,4,5],
 arr1:[]
}
//按下效果
ww:function(e){
    //这段是重点
    let newarr = [];
    newarr.push(e.currentTarget.dataset.item) 
    this.setData({
      arr1: newarr
    })  //先声明个空数组,把每个按钮的下标赋给新数组


    // console.log(1);
    var animation = wx.createAnimation({
      duration: 1000,
      timingFunction: "ease",
    })

    this.animation = animation

    animation.scale(0.8, 0.8).opacity(0.5).step();

    this.setData({
      animationData: animation.export()
    })
  },
  //松开效果
  ee:function(){
    // console.log(1);
    var animation = wx.createAnimation({
      duration: 1000,
      timingFunction: "ease",
    })
    this.animation = animation

    animation.scale(1, 1).opacity(1).step();
    this.setData({
      animationData: animation.export()
    })


  },
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值