Home  >  Article  >  Web Front-end  >  How to use canvas in HTML5 to achieve the effect of gradient text

How to use canvas in HTML5 to achieve the effect of gradient text

yulia
yuliaOriginal
2018-10-22 10:27:185857browse

is a new tag in HTML5. It can be used to draw images, but JavaScript scripts must be used to achieve the effect. How much do you know about canvas in HTML5? This article will tell you how to use canvas to create gradient text effects. Friends who are interested in drawing gradients on canvas can refer to it.

Use the canvas in HTML5 to achieve the gradient text effect. The syntax and parameter settings required are as follows. Friends who are unclear can take a look.

1. fillText( )

Syntax: context.fillText(text,x,y,maxWidth)

text indicates that it needs to be output on the canvas The text
x represents the X-axis coordinate where the text starts to be drawn
y represents the Y-axis coordinate where the text starts to be drawn
maxWidth represents the maximum text width allowed, the unit is pixels, and is an optional value.

2. createLinearGradient( )

Syntax: context.createLinearGradient(x0,y0,x1,y1)

x0 represents the X of the gradient starting point Axis coordinate
y0 represents the Y-axis coordinate of the gradient start point
x1 represents the X-axis coordinate of the gradient end point
y1 represents the Y-axis coordinate of the gradient end point

Example: 1 : Make a normal text (no color gradient), the code is as follows:



 
  
  
 

The effect picture is as shown:

How to use canvas in HTML5 to achieve the effect of gradient text

Example 2: Make a gradient text , the specific code is as follows:

ctx.font="30px Verdana";
  // Create gradient
  var gradient=ctx.createLinearGradient(0,0,c.width,0);
  gradient.addColorStop("0","orange");
  gradient.addColorStop("0.5","blue");
  gradient.addColorStop("1.0","red");
  // Fill with gradient
  ctx.fillStyle=gradient;
  ctx.fillText("have a nice day ",10,100);

Rendering:

How to use canvas in HTML5 to achieve the effect of gradient text

When making gradient text, first use createLinearGradient() to create a gradient, and then use fillStyle to change the gradient Apply to text.

The above introduces how to use canvas in HTML5 to create gradient text effects. It is simple and practical. Beginners can practice it by themselves. I hope you can create more cool effects.

For more related courses, please visit Html5 video tutorial

The above is the detailed content of How to use canvas in HTML5 to achieve the effect of gradient text. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn