现在有个手机页面,我需要手指滑动,并且同时页面跟随滑动,本来实现用了addEventListener('touchstart', touchStartFunc, false);
addEventListener('touchmove', touchMoveFunc, false);
addEventListener('touchend', touchEndFunc, false);
但发现只有在手指松开的时候才能触发,我希望的是一直跟随,当滑动的距离等于一页宽度的时候松开手指就页面进入下一页,当小于一页时还是显示这一页,页面移动我用了translate3d。求实现方法,有demo就更好了。
刚好前段时间写的
http://segmentfault.com/a/1190000003817077