Fullscreen

Browser-independent functions for working with the standard fullscreen API.
See:

Members

static readonly Freedo.Fullscreen.changeEventName : String

The name of the event on the document that is fired when fullscreen is entered or exited. This event name is intended for use with addEventListener. In your event handler, to determine if the browser is in fullscreen mode or not, use Fullscreen#fullscreen.

static readonly Freedo.Fullscreen.element : Object

The element that is currently fullscreen, if any. To simply check if the browser is in fullscreen mode or not, use Fullscreen#fullscreen.

static readonly Freedo.Fullscreen.enabled : Boolean

Determine whether the browser will allow an element to be made fullscreen, or not. For example, by default, iframes cannot go fullscreen unless the containing page adds an "allowfullscreen" attribute (or prefixed equivalent).

static readonly Freedo.Fullscreen.errorEventName : String

The name of the event that is fired when a fullscreen error occurs. This event name is intended for use with addEventListener.

static readonly Freedo.Fullscreen.fullscreen : Boolean

Determines if the browser is currently in fullscreen mode.

Methods

static Freedo.Fullscreen.exitFullscreen()

Asynchronously exits fullscreen mode. If the browser is not currently in fullscreen, or if fullscreen mode is not supported by the browser, does nothing.

static Freedo.Fullscreen.requestFullscreen(element, vrDevice)

Asynchronously requests the browser to enter fullscreen mode on the given element. If fullscreen mode is not supported by the browser, does nothing.
Name Type Description
element Object The HTML element which will be placed into fullscreen mode.
vrDevice Object optional The HMDVRDevice device.
Example:
// Put the entire page into fullscreen.
Freedo.Fullscreen.requestFullscreen(document.body)

// Place only the Freedo canvas into fullscreen.
Freedo.Fullscreen.requestFullscreen(scene.canvas)

static Freedo.Fullscreen.supportsFullscreen()Boolean

Detects whether the browser supports the standard fullscreen API.
Returns:
true if the browser supports the standard fullscreen API, false otherwise.