An open API service indexing awesome lists of open source software.

https://github.com/component/fullscreen

Fullscreen api wrapper
https://github.com/component/fullscreen

Last synced: 8 months ago
JSON representation

Fullscreen api wrapper

Awesome Lists containing this project

README

          

# fullscreen

Fullscreen api

## Installation

$ component install component/fullscreen

## Example

```js
var fullscreen = require('fullscreen');

fullscreen.on('change', function(full){
console.log('changed to %s', full ? 'fullscreen' : 'regular');
});

setTimeout(function(){
fullscreen();
}, 2000);
```

## Events

- "change" (fullscreen) boolean

## API

### fullscreen([el])

Display fullscreen document or `el`.

### fullscreen.exit()

Exit fullscreen mode.

### fullscreen.supported

Check if fullscreen is supported.

## License

MIT