小程序
小游戏
企业微信
微信支付
扫描小程序码分享
Page({
// Component({
如果用Page({,就是按键有效,动画无效,如果改成Component({,就是动画有效,按键无效,怎么使都有效呢?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
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="getPhoneNumber" bindtap="changeBtn" class="loginButton" disabled="{{btnDisabled}}" openType="getPhoneNumber">授权登录</button>
<view bindtap="unloginLook" class="loginSeeButton">随便看看</view>
<tools id="tools"></tools>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
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="getPhoneNumber" bindtap="changeBtn" class="loginButton" disabled="{{btnDisabled}}" openType="getPhoneNumber">授权登录</button>
<view bindtap="unloginLook" class="loginSeeButton">随便看看</view>
</view>
</view>
<tools id="tools"></tools>