Skip to content

CanvasGradient

Values

addColorStop

Adds a color stop with the given color to the gradient at the given offset. 0.0 is the offset at one end of the gradient, 1.0 is the offset at the other end.

Throws an "IndexSizeError" DOMException if the offset is out of range. Throws a "SyntaxError" DOMException if the color cannot be parsed. Read more on MDN

let addColorStop: (
WebAPI.CanvasAPI.canvasGradient,
~offset: float,
~color: string,
) => unit

Parameters

WebAPI.CanvasAPI.canvasGradient float string

Return type

unit

isInstanceOf

let isInstanceOf: 't => bool