This feature is not Baseline because it does not work in some of the most widely-used browsers.
The exponentialRampToValueAtTime() method of the AudioParam Interface schedules a gradual exponential change in the value of the AudioParam. The change starts at the time specified for the previous event, follows an exponential ramp to the new value given in the value parameter, and reaches the new value at the time given in the endTime parameter.
Note: Exponential ramps are considered more useful when changing frequencies or playback rates than linear ramps because of the way the human ear works.
exponentialRampToValueAtTime(value, endTime)
valueA floating point number representing the value the AudioParam will ramp to by the given time.
endTimeA double representing the exact time (in seconds) after the ramping starts that the changing of the value will stop.
A reference to this AudioParam object. In some browsers older implementations of this interface return undefined.
In this example, we have a media source with two control buttons (see the audio-param repo for the source code, or view the example live.) When these buttons are pressed, exponentialRampToValueAtTime() is used to fade the gain value up to 1.0, and down to 0, respectively. This is pretty useful for fade in/fade out effects:
// create audio context
const audioCtx = new AudioContext();
// set basic variables for example
const myAudio = document.querySelector("audio");
const expRampPlus = document.querySelector(".exp-ramp-plus");
const expRampMinus = document.querySelector(".exp-ramp-minus");
// Create a MediaElementAudioSourceNode
// Feed the HTMLMediaElement into it
const source = audioCtx.createMediaElementSource(myAudio);
// Create a gain node and set its gain value to 0.5
const gainNode = audioCtx.createGain();
// connect the AudioBufferSourceNode to the gainNode
// and the gainNode to the destination
gainNode.gain.setValueAtTime(0, audioCtx.currentTime);
source.connect(gainNode);
gainNode.connect(audioCtx.destination);
// set buttons to do something onclick
expRampPlus.onclick = () => {
gainNode.gain.exponentialRampToValueAtTime(1.0, audioCtx.currentTime + 2);
};
expRampMinus.onclick = () => {
gainNode.gain.exponentialRampToValueAtTime(0.01, audioCtx.currentTime + 2);
};
Note: A value of 0.01 was used for the value to ramp down to in the last function rather than 0, as an invalid or illegal string error is thrown if 0 is used — the value needs to be positive.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
exponentialRampToValueAtTime |
14 | 12 | 13425–134Before Firefox 134, this set the target volume at the specified time, but it didn't ramp to it, causing this function to behave likesetValueAtTime() (see bug 1171438 and bug 1567777). |
15 | 6 | 18This sets the target volume at the specified time, but it doesn’t ramp to it, causing this function to behave likesetValueAtTime(). |
13425–134Before Firefox for Android 134, this set the target volume at the specified time, but it didn't ramp to it, causing this function to behave likesetValueAtTime() (see bug 1171438 and bug 1567777). |
14 | 6 | 1.0 | 4.4This sets the target volume at the specified time, but it doesn’t ramp to it, causing this function to behave likesetValueAtTime(). |
6 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/exponentialRampToValueAtTime