Home > Web Front-end > H5 Tutorial > HTML5 draws complex shapes in canvas with screenshots of effects_html5 tutorial skills

HTML5 draws complex shapes in canvas with screenshots of effects_html5 tutorial skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 15:47:28
Original
1751 people have browsed it
1. Draw complex shapes or paths

When a simple rectangle cannot meet the needs, the drawing environment provides the following methods to draw complex shapes or paths.

beginPath(): Start drawing a new path.
closePath(): Closes the shape by drawing a line segment from the current point to the starting point of the path.
fill(), stroke(): Fill a shape or draw a hollow shape.
moveTo(): ​​Move the current point to point (x, y).
lineTo(): ​​Draw a straight line from the current point to point (x, y).
arc(x,y,r,sAngle,eAngle,counterclockwise): Draw an arc with a specified radius to point (x,y).

2. To draw complex shapes using these methods, you need to follow the following steps

Use the beginPath() method to start drawing the path.
Use moveTo(), lineTo(), arc(), methods to create line segments.
Use closePath() to end drawing and close the shape (optional).
Use stroke() or fill() to draw the outer border or fill shape of the path. Using fill() will automatically close all unclosed paths.

3. Arc() drawing instructions


4. Drawing complex shapes in canvas

Copy code
The code is as follows:






HTML5





Tips: Your browser does not support< ;canvas> tag




5. Drawing effect
Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
html5 validation for symfony 2.1
From 1970-01-01 08:00:00
0
0
0
The difference between HTML and HTML5
From 1970-01-01 08:00:00
0
0
0
html5 show hide
From 1970-01-01 08:00:00
0
0
0
Can PDF files run HTML5 and Javascript?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template