收藏
回答

要不组件动画有效,要不按键有效,怎么都有效呢?

Page({

// Component({


如果用Page({,就是按键有效,动画无效,如果改成Component({,就是动画有效,按键无效,怎么使都有效呢?



回答关注问题邀请回答
收藏

2 个回答

  • Demons
    Demons
    2022-04-13

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-04-13
    有用
    回复 2
  • 彭为伟
    彭为伟
    2022-04-13

    Component({

      properties: {

        num: { // 球体数量

          type: Number,

          value: 20

        }

      },


      data: {

        topArr: {}, // 顶部定位数值数组

        leftArr: {}, // 左侧定位数值数组

        numArr: [], // 数组循环所需要的值

        animationArr: {}, // 动画名称数组

        borderArr: {}, // 球体直径数组

        num: 20, // 球体数量

        intTimeArr: [] // 定时器名称数组

      },

    =====


    <view class="bg_view" ></view>

    <view  wx:for="{{numArr}}"  wx:key="unique">

      <view  class="border_view" style="width:{{borderArr['border' + index]}}rpx;height:{{borderArr['border' + index]}}rpx;border-radius:150rpx;background: radial-gradient(#2de6e6, #9511ec, pink);opacity:0.3969;position: absolute;  position: absolute;top: {{topArr['top' + item]}}rpx;left: {{leftArr['left' + item]}}rpx; " animation="{{animationArr['animationData' + item]}}"  ></view>

    </view>


    <view class="container">


      <view class="loginButtonBox">

            <button bindgetphonenumber="getPhoneNumberbindtap="changeBtnclass="loginButtondisabled="{{btnDisabled}}" openType="getPhoneNumber">授权登录</button>

            <view bindtap="unloginLookclass="loginSeeButton">随便看看</view>

        </view>

    </view>

    <tools id="tools"></tools>




    2022-04-13
    有用
    回复
登录 后发表内容