Home Web Front-end HTML Tutorial HTML5 uses canvas to draw Doraemon's head (code example)

HTML5 uses canvas to draw Doraemon's head (code example)

May 31, 2021 pm 05:02 PM
canvas html5 doraemon

HTML5 uses canvas to draw Doraemon's head (code example)

html5 canvas is very powerful. The following article uses html5 canvas to implement a simple Doraemon head. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

The effect is as follows:

HTML5 uses canvas to draw Doraemons head (code example)

The code is as follows:

<div class="doraemon">
    <canvas id="face" width="600" height="1500">您的浏览器不支持canvas</canvas>
</div>
<script>
       var face = document.getElementById(&#39;face&#39;).getContext("2d");
       face.arc(252,252,250,0,360*Math.PI/180); 
       face.fillStyle = &#39;#07beea&#39;;  //设置填充颜色
         face.fill();  //填充
         face.lineWidth = 2;   //轮廓线宽度
         face.strokeStyle = &#39;#333&#39;;   //轮廓线颜色
         face.stroke();   //画轮廓线

         face.beginPath();     //重置当前绘画路径
         face.moveTo(160,450);   //画笔移动到起始点
         face.bezierCurveTo(0,400,0,110,210,115);    //三次贝塞尔曲线(左边)
         face.lineTo(290,115);   
        face.bezierCurveTo(500,110,500,400,340,450);  
        face.bezierCurveTo(280,470,220,470,160,450);  
        face.fillStyle = &#39;#fff&#39;;
        face.fill();
        face.stroke();   //画出边框

         face.beginPath();         //重置当前绘画路径 用于画眼睛和鼻子
         face.moveTo(150,150);
        face.lineTo(150,100);        //左眼左竖线
         face.bezierCurveTo(160,50,240,50,250,100);   //左眼下面
         face.lineTo(250,150);            //左眼右竖线
         face.bezierCurveTo(240,200,160,200,150,150);   //左眼上面
         face.moveTo(250,150);
        face.lineTo(250,100);              //右眼左竖线
         face.bezierCurveTo(260,50,340,50,350,100);   //右眼上面
         face.lineTo(350,150);               //右眼右竖线
         face.bezierCurveTo(340,200,260,200,250,150);   //右眼下面
         face.fillStyle = &#39;#fff&#39;;
        face.fill();
        face.stroke();

        
         face.beginPath(); 
         face.arc(225,155,10,0,360*Math.PI/180);   //眼珠
          face.arc(275,155,10,0,360*Math.PI/180);
         face.fillStyle = &#39;#333&#39;;   
         face.fill();

         face.beginPath();    //鼻子
          face.arc(250,197,25,0,360*Math.PI/180);   
         face.fillStyle = &#39;#c93e00&#39;;   
         face.fill();
         face.stroke();

         face.beginPath(); 
         face.arc(260,190,10,0,360*Math.PI/180);
         var grd = face.createRadialGradient(260,190,2,260,190,10);   //设置内外圆原点和半径  
          grd.addColorStop(0,&#39;#fff&#39;);
         grd.addColorStop(1,&#39;#c93e00&#39;);
         face.fillStyle = grd;
         face.fill();

         //嘴巴
          face.beginPath();
         face.moveTo(250,222);
         face.lineTo(250,395);
         face.moveTo(100,320);
         face.bezierCurveTo(180,420,320,420,400,320);
         face.lineWidth = 3;
         face.stroke();

         //胡须
          face.beginPath();
         face.moveTo(80,200);
         face.lineTo(180,220);
         face.moveTo(80,245);
         face.lineTo(180,245);
         face.moveTo(80,290);
         face.lineTo(180,270);

         face.moveTo(320,220);
         face.lineTo(420,200);
         face.moveTo(320,245);
         face.lineTo(420,245);
         face.moveTo(320,270);
         face.lineTo(420,290);
         face.stroke();

</script>
Copy after login

For more programming-related knowledge, please visit: Programming Video! !

The above is the detailed content of HTML5 uses canvas to draw Doraemon's head (code example). For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

See all articles