获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 无法播放本地音频?bug?
我的小程序有一个主要功能:点击按钮伴随声音,音频大概30kb 除了外链有什么办法实现?
2017-06-20 - 视图容器缺陷:
swiper 少了bindscroll方法,用来做滑动距离监听 scroll-view 少了强制停止滑动的方法,否则滑动时设置scroll-into-view,会闪屏 view 使用bindtouchmove方法设置margin-left,模拟拖动在android表现为延迟,快速拖动会特别卡,在ios上没事
2017-06-07 - 使用catchtouchmove拖动控制的位置,在android有明显的延迟
如题,使用catchtouchmove拖动控制的位置,在android有明显的延迟,但是ios没事,这算不算bug? 感觉特别卡顿都没办法使用它来做一个随手势滑动的动画了。。。 <view style="left:{{left}}px;top:{{top}}px;position: absolute;" catchtouchmove="viewTouchMove" <="" p=""> >使用鼠标拖动我 Page({ data:{ left:'', top:'' }, viewTouchMove:function(e){ this.setData({ left:e.touches[0].clientX-60, top:e.touches[0].clientY-60 }) } })
2017-06-05