Canvas Linear Gradients

You are Here:

How to Create a Linear Gradient

Your browser does not support the canvas element.

To create a linear gradient, follow these steps

  1. canvas - Assigning the canvas element to a variable.
  2. ctx - Assigning the 2d rendering context to another variable by calling the getContext('2d') method.
  3. grad - Creating a new CanvasGradient object using createLinearGradient() canvas method, then assigning it to a variable.
  4. addColorStop() - Use addColorStop() canvas method to add a new color stop, defined by an offset and a color.
  5. fillStyle - Use fillStyle canvas property to specify the gradient to use inside shapes (any shape).
  6. fillRect() - Use fillRect() canvas method to draws a rectangle that is filled according to the current fillStyle.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <body> <canvas id="point" width="210" height="110"> Your browser does not support the canvas element. </canvas> <script> var canvas = document.getElementById("point"); var ctx = canvas.getContext("2d"); // Create gradient var grad = ctx.createLinearGradient(0, 0, 200, 0); grad.addColorStop(0, "black"); grad.addColorStop(1, "gold"); // Fill with gradient ctx.fillStyle = grad; ctx.fillRect(0, 0, 200, 100); </script> </body> </html>

Syntax

ctx.createLinearGradient(x0, y0, x1, y1)

Attributes Value

ValueExplanation
x0Specifies the x-axis coordinate of the start point.
y0Specifies the y-axis coordinate of the start point.
x1Specifies the x-axis coordinate of the end point.
y1Specifies the y-axis coordinate of the end point.

Reminder

Hi Developers, we almost covered 93% of Canvas Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in Canvas.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author