W3Schools.com

HTML5 canvas moveTo Method

HTML5 track Tag Reference HTML5 canvas reference

Example

Draw a path, shaped as the letter T:

Yor browser does not support the canvas tag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.moveTo(50,20);
ctx.lineTo(50,100);
ctx.moveTo(20,20);
ctx.lineTo(80,20);
ctx.stroke();

Try it yourself »

Definition and Usage

The moveTo method moves the path to the specified point in the canvas, without creating a line.

The moveTo method takes two parameters, the x an y coordinates.

JavaScript syntax: context.moveTo(x,y);


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The moveTo method is supported in all major browsers.


Parameter Values

Parameter Values Description Play it
x x-coordinate The x-coordinate of where to move the path to Play it »
y y-coordinate The x-coordinate of where to move the path to Play it »

HTML5 track Tag Reference HTML5 canvas reference


WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE