The CanvasGradient
.addColorStop()
method adds a new color stop, defined by an offset
and a color
, to a given canvas gradient.
void gradient.addColorStop(offset, color);
offset
0
and 1
, inclusive, representing the position of the color stop. 0
represents the start of the gradient and 1
represents the end; an INDEX_SIZE_ERR
is raised if the number is outside that range.color
<color>
value representing the color of the stop. A SYNTAX_ERR
is raised if the value cannot be parsed as a CSS <color>
value.addColorStop
methodThis example uses the addColorStop
method to add stops to a linear CanvasGradient
object. The gradient is then used to fill a rectangle.
<canvas id="canvas"></canvas>
var canvas = document.getElementById('canvas'); var ctx = canvas.getContext('2d'); var gradient = ctx.createLinearGradient(0, 0, 200, 0); gradient.addColorStop(0, 'green'); gradient.addColorStop(.7, 'white'); gradient.addColorStop(1, 'pink'); ctx.fillStyle = gradient; ctx.fillRect(10, 10, 200, 100);
Edit the code below to see your changes update live in the canvas:
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'CanvasGradient.addColorStop' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | 12 | Yes | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | ? | Yes | Yes | Yes | Yes | Yes | Yes |
CanvasGradient
CanvasRenderingContext2D.createLinearGradient()
CanvasRenderingContext2D.createRadialGradient()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasGradient/addColorStop