volumeButton
비디오 볼륨 조절 버튼을 표시합니다.
true
일 경우 기본값을 적용하고, false
일 경우 표시하지 않습니다.
세부 옵션도 설정 가능합니다. ControlBarItemOptions를 확인해보세요.
예시
아래는 버튼을 표시하지 않는 예시입니다.
import { ControlBar } from "@egjs/view360";
new ControlBar({
volumeButton: false
})
아래는 버튼을 다른 위치에 표시하는 예시입니다.
import { ControlBar } from "@egjs/view360";
new ControlBar({
volumeButton: {
position: ControlBar.POSITION.MAIN_LEFT,
}
})