Prevent display sleep and enable wake lock in all Android and iOS web browsers.
Check out the live demo in any Android or iOS web browser.
This library is available on Bower as nosleep.
$> bower install nosleep
This package is published to npm as nosleep.js and can be installed with:
$> npm install nosleep.js
Alternatively, you can manually add NoSleep.js to your project (or the minified version).
This repository uses webpack to build the distribution versions of the library. To build this library run webpack
.
Create a new NoSleep object and then enable or disable it when needed as follows:
var noSleep = new NoSleep();
function enableNoSleep() {
noSleep.enable();
document.removeEventListener('click', enableNoSleep, false);
}
// Enable wake lock.
// (must be wrapped in a user input event handler e.g. a mouse or touch handler)
document.addEventListener('click', enableNoSleep, false);
// ...
// Disable wake lock at some point in the future.
// (does not need to be wrapped in any user input event handler)
noSleep.disable();
MIT. Copyright (c) Rich Tibbett