获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 小程序有没有微信提醒API?
需要一个微信聊天窗口长按消息弹出的那个提醒功能,希望能开放api给小程序调用。 [图片]->[图片]
2023-05-03 - movable-area消失时可以加上动画效果吗?
<movable-area class="option_area" wx:show="{{showOptionBar}}"> <movable-view class="option_bar" direction="vertical" out-of-bounds="true" bindchange="optionMove" > <view class="content option_line">上滑收起</view> </movable-view> </movable-area> // 代码 optionMove (e) { if (e && e.detail) { if (e.detail.y < 0) { this.showOptionBar = false } } }, a 这里 this.showOptionBar控制了moveable-area的是否展示,模拟上滑收起的效果,应该怎么做呢
2022-07-17