It means fast scrolling when you click on the wheel to quickly rewind the page.

  • As far as I know, clicking on the wheel is identical to the middle button click on the old mice. That is, in fact, clicking the mouse button turns on the fast navigation mode where the mousemove works as an accelerated scroll, and the exit is done by clicking any mouse button. - culebre
  • This is a browser feature, not a site =) - Gorets

2 answers 2

http://archive.plugins.jquery.com/project/mousewheel - jquery plugin for working with the wheel

Not tested, but scrolling, you can probably turn it off

$(document).mousewheel(function(event) { event.preventDefault(); //Используем это или то, что ниже для отключения стандартного события //Ваш код //return 0; }); 
     $(document).mousewheel(function(event) { event.preventDefault(); //Используем это или то, что ниже для отключения стандартного события //Ваш код //return 0; }); 

    Paste into index.php or index.html after immediately after <body>

    • one
      What is this funny? - excellproj
    • It seems that your answer almost completely repeats the next one . In this case, it would be better not to repeat it, but to supplement it with the edit . - Nick Volynkin