const box = document.querySelector('.box');
box.addEventListener('wheel', (e) => {
console.log(e.deltaY);
});
(async function() {
while (true) {
await new Promise(function(s) { document.addEventListener('scroll', s, { 'once': true }); });
console.log('Зафиксирован скрол страницы, ждем секунду перед следующий фиксацией...');
await new Promise(function(s) { setTimeout(s, 1000); });
}
})();