1.0.3 • Published 5 years ago
isseen v1.0.3
Isseen
Function prototype for element.
Install
npm install isseen
Usage
import 'isseen';
const el = document.querySelectorAll('.animation');
document.addEventListener('scroll', () => {
el.forEach(item => {
item.isSeen() ?
item.classList.add('show') :
item.classList.remove('show');
});
}, { passive: true });