获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- ios分享
为什么ios真机中分享小程序,分享到个人就可以,分享到群中就只有自己能看看分享的小程序卡片,别人看不见分享的小程序卡片也没提示,安卓手机就没问题
2018-11-28 - movable-view中添加animation没有效果
<movable-area class='mian1' > <movable-view class='mian1_move' direction="all" inertia="true" bindchange="onChange" animation="{{move_animation}}"> text</movable-view> </movable-area> data: { move_animation: "", } onChange(e) { console.log(e.detail) var that=this if (e.detail.source == "friction"){ setTimeout(function(){ var move_animation = wx.createAnimation({ duration: 500, timingFunction: "linear", }) that.animation = move_animation move_animation.opacity(0).step() that.setData({ move_animation: move_animation.export() }) console.log(111) },400) } }, console.log能打印多次
2018-11-12