How to draw a circle in HTML5 canvas? (code example)

不言
Release: 2018-12-04 10:51:29
Original
8677 people have browsed it

Canvas can be used to draw various graphics, so how to use HTML5 canvas to draw a circle? This article will introduce to you the method of drawing circles on HTML5 canvas. Let’s take a look at the specific content.

HTML5 canvas

Let’s look at the example directly

The code is as follows

       
Canvas Demo
Copy after login

Running results

Execute the above HTML file on the browser . The following effect will be displayed

HTML5 canvas

Finally, the coordinates of the circle given by the arc() method are the center coordinates of the circle.

In the above HTML code, set the drawing part to the following code.

function draw() { var canvas = document.getElementById('SimpleCanvas'); if ( ! canvas || ! canvas.getContext ) { return false; } var cx = 360; var cy = 400; var radius = 36; var context = canvas.getContext('2d'); context.beginPath(); context.arc(cx, cy, radius, 0, 2 * Math.PI, false); context.fillStyle = '#9fd9ef'; context.fill(); context.lineWidth = 1; context.strokeStyle = '#00477d'; context.stroke(); context.beginPath(); context.moveTo(0, 0); context.lineTo(cx, cy); context.stroke(); }
Copy after login
The display effect of the above code is as follows. You can see that the center coordinate is the center of the circle.

The above is the detailed content of How to draw a circle in HTML5 canvas? (code example). For more information, please follow other related articles on the PHP Chinese website!

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 Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!