Hello
There is such code:
function timeOutHover() { $('.work-examples__li').hover( // при наведении function(){ setTimeout(function() { $(this).addClass('newhover'); }, 1000); // 1 sek }, // при уходе function(){ setTimeout(function() { $(this).removeClass('newhover'); }, 1000); // 1 sek } ); } I try to make it so that when hovering, the guidance did not work immediately, but through 1c, since there are several such blocks and if you quickly move the cursor over them, it doesn’t look very good. This code does not work, I don’t know why