微信小程序中,显示消息提示框,取消文字插入本地图片,导入一个动画的命令
wx.showToast({
title: '消息提示',
icon: 'none',
duration: 2000
})
wx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success(res) {
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
}
})
wx.createAnimation({
duration: 1000,
timingFunction: 'ease',
})