во время скролла не триггерится mouseenter\mouseleave?
Нет, поэтому кидай код, ты что-то накосячил :)
Ну накосячил вряд ли. container.addEventListener('mouseenter', (event) => { if(!isShow && isNotMobile) { isShow = true; cursorPos(event); cursor.classList.add('portfolio-cursor--show'); } }) container.addEventListener('mouseleave', () => { if(isNotMobile && isShow) { isShow = false; if(cursor.classList.contains('portfolio-cursor--show')) cursor.classList.remove('portfolio-cursor--show'); } })
можешь попробовать в https://t.me/js_ru
Обсуждают сегодня