Mobile Web

FullScreen API - Mozilla

This feature is supported in mobile applications only.

You can display an element in the fullscreen mode:

  • With the webkitRequestFullScreen() method, you can convert a specific element to fullscreen.
  • With the webkitCancelFullScreen() method, you can cancel the fullscreen mode.

If the element uses the :full-screen CSS pseudo-class to switch to the fullscreen mode, a style can be assigned for the fullscreen mode.

Note
Tizen supports the WebKit-based Fullscreen API. When using the Fullscreen API, you must include the webkit prefix.
Go to top