sips-js-api
    Preparing search index...

    Interface Gradient

    The Gradient interface represents an opaque object describing gradient. It is returned by the methods Canvas.createLinearGradient, Canvas.createRadialGradient.

    It can be used as a Canvas.fillStyle or Canvas.strokeStyle.

    interface Gradient {
        addColorStop(offset: number, color: string): void;
    }
    Index
    • Adds a new color stop, defined by an offset and a color, to a given canvas gradient.

      Parameters

      • offset: number

        A number between 0 and 1, inclusive, representing the position of the color stop. 0 represents the start of the gradient and 1 represents the end.

      • color: string

        A CSS color value representing the color of the stop.

      Returns void