linearRampToValueAtTime
Summary
Schedules a linear continuous change in parameter value from the previous scheduled parameter value to the given value.
Method of apis/webaudio/AudioParamapis/webaudio/AudioParam
Syntax
var = AudioParam.linearRampToValueAtTime(value, endTime);
Parameters
value
- Data-type
- Number
The value the parameter will linearly ramp to at the given time.
endTime
- Data-type
- Number
The time in the same time coordinate system as AudioContext.currentTime.
Return Value
Returns an object of type
Examples
var gainNode = audioCtx.createGain();
gainNode.gain.linearRampToValueAtTime(1.0, audioCtx.currentTime + 2); //'gain' is the AudioParam
Related specifications
- W3C Web Audio API
- W3C Editor’s Draft