1.0.3 • Published 5 years ago

isseen v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

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 });
1.0.3

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago