- video catchtouchmove 不起作用
<video class="video" src="{{resource.video_url}}" hover-class="none" catchtouchstart="stopScroll" catchtouchmove="stopScroll" catchtouchend="stopScroll" autoplay="{{false}}" controls="{{false}}" loop="true" objectFit="cover" id="video"> 看一下video的catchtouchmove 不起作用,不知道如何禁止catchtouch的滑动,主要是我不想让背景滑动 <view catchtouchmove="stopScroll"><video class="video" src="{{resource.video_url}}" hover-class="none" catchtouchstart="stopScroll" catchtouchmove="stopScroll" catchtouchend="stopScroll" autoplay="{{false}}" controls="{{false}}" loop="true" objectFit="cover" id="video"> 不知道如何捕获 video的touch事件,还有就是如果在上面加一个cover-image或者cover-view,是否能够禁止滑动 stopScroll: function(){ // return false; console.log('stopScroll...............') }, stopCatch: function(){ console.log('stopCatch...............') },
2017-12-20 - 最新版本微信开发工具有bug,如下图
1、用别的ide修改小程序后,自动更新 wxml显示不正确 [图片] 2、cover-view和 cover-image flex在开发工具上支持不行 display: flex flex-direction: 'column' 开发工具如上图 真机上如下图,flex是OK的 [图片]
2017-12-14