This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

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