Home > Web Front-end > JS Tutorial > body text

Detailed explanation of how to draw pictures using canvas in js+HTML5

巴扎黑
Release: 2017-09-09 10:12:34
Original
1684 people have browsed it

This article mainly introduces the method of drawing pictures with js HTML5 canvas in detail. It has certain reference value. Interested friends can refer to it.

The example in this article shares with you the HTML5 canvas drawing. The specific code of the picture is for your reference. The specific content is as follows

demo.js


window.onload=function() {
  createcanvas();
 
  drawImage();
}
 function createcanvas() {
   var CANVAS=document.getElementById('mycanvas');
   context=CANVAS.getContext('2d');
 }
 
function drawImage() {
  var img=new Image();
  img.onload=function() {
    context.drawImage(img,0,0,200,200 );
  }
  img.src="img5.jpg";
}
Copy after login

demo.html


<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>canvas</title>
 
  <script type="text/javascript" src="demo.js"></script>
</head>
<body>
  <canvas id="mycanvas"  width="400" hight="400" >
<span>你的浏览器不支持canvas</span>
</canvas>
 
</body>
</html>
Copy after login

Picture:

Effect:

The above is the detailed content of Detailed explanation of how to draw pictures using canvas in js+HTML5. 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
Popular Tutorials
More>
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!