I've got this code:
$("#element").mousemove(function(e) {
if(e.pageX == 255) {alert("here");}
});
When I move fast with the mouse it doesn't recognize the whole path it moves, it returns for example 260 and then 210 - not like I'd expect 260,259,258... Here comes the issue - I can't get catch exact moment when I passed the position, because it doesn't return this position. Is there any other way to get this position pixel after pixel? Thanks. can you provide a jsfiddle? Hard to tell what your problem is...
以上就是If I move fast with mouse e.pageX doesn't recognize the path的详细内容,更多请关注web前端其它相关文章!