Agregar clase cuando el elemento en la vista Vanilla JavaScript
window.addEventListener('scroll', function (event) {
if (isInViewport(theElementToWatch)) {
// update the element display
}
}, false);
code fighter