1.1.0 • Published 9 years ago

component-fullscreen v1.1.0

Weekly downloads
8
License
MIT
Repository
github
Last release
9 years ago

fullscreen

Fullscreen api

Installation

$ component install component/fullscreen

Example

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