手机端怎么实现拖动元素效果?


好像是需要用到touchmove事件,可否贴出代码来参考一下,或者比较好用的插件,谢谢

jquery web前端开发 html5 JavaScript 手机端

厦门小叮当 9 years ago

我建议自己写,移动端主要是 通过 touchstart 、touchmove、和 touchend来实现拖动效果。

可以写这样一段小小的代码 :

var ele = document.getElementById("drag");

var moving = function(e){
/.......

}
var mouseup = function(e){
/.......


 document.removeEventListener("touchmove", moving);
document.removeEventListener("touchend", mouseup);

}

ele.addEventListener("touchstart",function(e){


 event.preventDefault();
item.set_prop("isMoving", true);
document.addEventListener("touchmove", moving,false);
document.addEventListener("touchend", mouseup,false);

},false);

注意点:
1.必须在拖动出发的时候禁用屏幕滚动和缩放,比如 上面的event.preventDefault();
2.必须在拖动完成之后remove 之前注册的事件。

请叫我最亚伦。。哈哈

STR.Nco answered 9 years ago

这个元素给absolute
外层父元素relative
然后加上touchmove事件,代码很简单啊

zxcvb answered 9 years ago

你可以查看jQuery UI Touch Punch , 你会为之惊叹的。
看这个: http://touchpunch.furf.com/

幻月D静马 answered 9 years ago

Your Answer