1.0.1 • Published 7 years ago

page-visible v1.0.1

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

page-visible

NPM module

Description

This module is based on the Page Visibility API. It shows when a webpage is in focus or hidden.

Install

npm install page-visible

Usage

console.log(PageVisible.visible); // Boolean

PageVisible.on('hidden', function(){
  console.log('Page is not visible anymore!');
});

PageVisible.on('visible', function(){
  console.log('User is back on the page!');
});