手记

触摸事件获取坐标

//开始触摸时
$("#article").bind('touchstart',function(event){
var x=event.changedTouches[0].screenX;
var y=event.changedTouches[0].screenY;
$("#pop").css("display","block");
$("#tag").html(x);
$("#cancel").html(y);
$("#pop").css({"top":x,"left":y});

});
0人推荐
随时随地看视频
慕课网APP