为什么swipeLeft和swipeRight在电脑的浏览器能用,在手机没用(红米Note,原生、微信、UC都试过了)?
好纠结啊。。。不太可能是库的本身问题吧
好纠结啊。。。不太可能是库的本身问题吧
2015-04-01
这是代码片段, 主要是document的默认事件, 需要自己禁止, zepto 没有全给你做了
container.delegate('li', 'tap', function () {
var _id = cId = $(this).data('id');
loadImg(_id);
document.addEventListener('touchmove', stopPrevent, false);
});
function stopPrevent(e) {
e.preventDefault();
return false;
}
var lock = false;
largeContainer.tap(function (e) {
$(this).hide();
document.removeEventListener('touchmove',stopPrevent, false);
})
举报