document.body.onmousemove = (function() { var y = 0 return function(e) { if (e.clientY > y) { alert('вниз') } else if (e.clientY < y) { alert('вверх') } y = e.clientY } })()