- 微信MAC客户端4.0 测试版,安装好导入历史聊天记录,到底是复制还是合并?
导入提到:“原微信客户端的聊天记录将复制到此微信客户端,完成后可在此微信客户端上浏览两个客户端合并后的聊天记录。” 老客户端的聊天记录是否可删除?是否也显示合并后聊天记录?
星期一 10:27 - 组件内用wx.createVideoContext(id)后play()不行,是什么原因啊?
自定义组件内wxml <video id="myvideo2" src='https://peacebird-img.oss-cn-shanghai.aliyuncs.com/wx/2019-12-11-bar-12.mp4' enable-danmu danmu-btn controls> <cover-view bindtap="videoPlayCover"> <cover-image class="img" src="http://ofstudio.com/tempimag/001.jpg" style="width: 50%;" /> </cover-view> </video> 自定义组件内JS methods: { videoPlayCover() { var video = wx.createVideoContext('myvideo2'); console.log(video) video.play(); } } video.play(); //执行失败 https://developers.weixin.qq.com/s/8xTOfJml7tfg
2020-03-10 - 微信小程序 Animation 的问题?
[代码]this[代码][代码].animation.top(100).step({duration: 100})[代码][代码]this[代码][代码].animation.top(100+30).left(0).step({duration: 300,timingFunction: [代码][代码]'ease-out'[代码][代码]})[代码][代码]this[代码][代码].animation.top(0).step({duration: 500,timingFunction: [代码][代码]'ease-in-out'[代码][代码]})[代码][代码]this[代码][代码].animation.rotate(45).step({duration: 500,timingFunction: [代码][代码]'ease-in-out'[代码][代码]})[代码][代码]this[代码][代码].setData({[代码][代码] [代码][代码]animationData: [代码][代码]this[代码][代码].animation.export()[代码][代码]})[代码]上述的代码第三步和第四步的效果会被合并执行 [代码]this[代码][代码].animation.top(100).step({duration: 100})[代码][代码]this[代码][代码].animation.top(100+30).step({duration: 300,timingFunction: [代码][代码]'ease-out'[代码][代码]})[代码][代码]this[代码][代码].animation.top(0).step({duration: 500,timingFunction: [代码][代码]'ease-in-out'[代码][代码]})[代码][代码]this[代码][代码].animation.rotate(45).step({duration: 500,timingFunction: [代码][代码]'ease-in-out'[代码][代码]})[代码][代码]this[代码][代码].setData({[代码][代码] [代码][代码]animationData: [代码][代码]this[代码][代码].animation.export()[代码][代码]})[代码][代码] [代码] 可是去掉了第二步的 .left(0) 第三步和第四步的效果就正常了,会分开执行了 不晓得是什么原因
2019-10-18