Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. var pageY = 0;
  2. $(function () {
  3. $('.nizina').mousedown(function (event) {
  4.  
  5. $(this).on('mousemove', function (e) {
  6. if (pageY) {
  7. if (event.pageY > pageY) {
  8.  
  9. console.log('Мышка движется вверх');
  10.  
  11. } else if (event.pageY < pageY) {
  12. console.log('Мышка движется вниз');
  13. }
  14. }
  15. pageY = event.pageY;
  16. });
  17. });
  18. });
  19. $('.nizina').on('mouseup mouseout', function (e) {
  20. $(this).off('mousemove');
  21. });
Add Comment
Please, Sign In to add comment