# Navbar customization
# Core buttons
The navbar
option is an array which can contain the following elements:
autorotate
zoomOut
zoomRange
zoomIn
zoom
=zoomOut
+zoomRange
+zoomIn
moveLeft
moveRight
moveTop
moveDown
move
=moveLeft
+moveRight
+moveTop
+moveDown
download
description
caption
fullscreen
# Plugins buttons
Some plugins add new buttons to the navbar and will be automatically shown if you don't override the navbar
option. However if you do, you will have to manually add said buttons in your configuration. The buttons codes are documented on each plugin page.
# Custom buttons
You can also add as many custom buttons you want. A custom button is an object with the following options:
# content
(required)
- type :
string
Content of the button. Preferably a square image or SVG icon.
# onClick(viewer)
(required)
- type :
function(Viewer)
Function called when the button is clicked.
# id
- type :
string
Unique identifier of the button, usefull when using the navbar.getButton()
method.
# title
- type :
string
Tooltip displayed when the mouse is over the button.
# className
- type :
string
CSS class added to the button.
# disabled
- type :
boolean
- default :
false
Initially disable the button.
# visible
- type :
boolean
- default :
true
Initially show the button.
The API allows to change the visibility of the button at any time:
viewer.navbar.getButton('my-button').show();
# Example
This example uses some core buttons, the caption and a custom button.
new PhotoSphereViewer.Viewer({
navbar: [
'autorotate',
'zoom',
{
id: 'my-button',
content: '<svg...>',
title: 'Hello world',
className: 'custom-button',
onClick: (viewer) => {
alert('Hello from custom button');
},
},
'caption',
'fullscreen',
],
});