fullscreenButton
Displays the fullscreen enter/exit button.
If true
, it'll show the button & apply the default options.
If false
, it won't display the button.
You can also set detailed options by setting a object of type ControlBarItemOptions.
caution
In environments where fullscreen APIs are not supported, such as iOS, the fullscreen button won't be displayed.
In this case, you can use polyfills to to make the environment support Fullscreen API.
Example
Below is an example of not displaying a button.
import { ControlBar } from "@egjs/view360";
new ControlBar({
fullscreenButton: false
})
Below is an example of a button displaying in a different location.
import { ControlBar } from "@egjs/view360";
new ControlBar({
fullscreenButton: {
position: ControlBar.POSITION.TOP_RIGHT,
order: 0
}
})