Lines Matching refs:volumeChange
2038 …You can check whether the setting takes effect by subscribing to the [volumeChange](#onvolumechang…
2057 ### on('volumeChange')<sup>9+</sup>
2059 on(type: 'volumeChange', callback: Callback\<number>): void
2071 | type | string | Yes | Event type, which is **'volumeChange'** in this case. This event is …
2077 avPlayer.on('volumeChange', (vol: number) => {
2078 console.info('volumeChange called,and new volume is :' + vol)
2082 ### off('volumeChange')<sup>9+</sup>
2084 off(type: 'volumeChange', callback?: Callback\<number>): void
2094 | type | string | Yes | Event type, which is **'volumeChange'** in this case.|
2100 avPlayer.off('volumeChange')
5575 audioPlayer.on('volumeChange', () => { // Set the 'volumeChange' event callback.
5576 console.info('audio volumeChange called');
5690 ### on('play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange')<sup>(deprecate…
5692 on(type: 'play' | 'pause' | 'stop' | 'reset' | 'dataLoad' | 'finish' | 'volumeChange', callback: ()…
5706 ….<br>- 'finish': triggered when the audio playback is finished.<br>- 'volumeChange': triggered whe…
5739 …audioPlayer.setVolume(0.5); // Set the volume to 50% and trigger the 'volumeChange'…
5741 audioPlayer.on('volumeChange', () => { // Set the 'volumeChange' event callback.
5742 console.info('audio volumeChange called');