マウス固有の動きを計算する方法を知りたいです。
マウスが A から B に移動したことを確認する方法についてアドバイスが欲しいです。
たとえば、win8 のように。マウスがウィンドウの端にあるときにドロップダウンすると、サイドバーが表示されます。
$(window).on('mousemove' function(e){
if(e.pageX is on area of or close to the side of window){
// how can I calculate if the mouse Y is from a point to a point??
if(Y is moved from A to B){
//do something
}
}
})