【canvas画图】画一个摩乐乐

最近摩尔上头,来画个简易版的摩乐乐~
效果图如下:
在这里插入图片描述

<!--
 * @Description: 绘画一个摩乐乐
-->
<!DOCTYPE html>
<html lang="cms-Hans-CN">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <title>摩乐乐</title>
</head>

<body>
  <canvas id="myCanvas" width="600" height="600"></canvas>
</body>

<script>
  var c = document.getElementById("myCanvas")
  var ctx = c.getContext("2d")

  // 颜色备用
  var whtie = "#ffffff"
  var black = "#000000"
  var red = "red"
  var blue = "#85C6F2"
  var ant = "#FAEBD7"


  // 绘画头
  ctx.beginPath()
  ctx.arc(300, 300, 150, 0, 2 * Math.PI)
  ctx.fillStyle = blue
  ctx.fill()
  ctx.stroke();

  // 左弧线
  ctx.beginPath();
  ctx.moveTo(162, 357); //起始点
  var cp1x = 170, cp1y = 230;  //控制点
  var x = 400, y = 357; // 结束点
  //绘制二次贝塞尔曲线
  ctx.quadraticCurveTo(cp1x, cp1y, x, y);
  ctx.closePath()
  ctx.strokeStyle = ant;
  ctx.fill()
  ctx.stroke();

  // 右弧线
  ctx.moveTo(200, 360); //起始点
  var cp1x = 430, cp1y = 230;  //控制点
  var x = 440, y = 354; // 结束点
  //绘制二次贝塞尔曲线
  ctx.quadraticCurveTo(cp1x, cp1y, x, y);
  ctx.closePath()
  ctx.fillStyle = ant;
  ctx.fill();
  ctx.stroke();

  // 下巴填充
  ctx.beginPath();
  ctx.arc(300, 300, 149, 0.35, 2.75, false);
  ctx.closePath();
  ctx.fill();
  ctx.stroke();

  // 绘画红色圆头鼻子
  ctx.beginPath()
  ctx.arc(300, 300, 40, 0, 2 * Math.PI)
  ctx.strokeStyle = black;
  ctx.fillStyle = red
  ctx.fill()
  ctx.stroke();

  // 绘画鼻子高光白点
  ctx.beginPath()
  ctx.ellipse(280, 280, 10, 6, 2.5, 0, 2 * Math.PI)
  ctx.strokeStyle = red;
  ctx.fillStyle = whtie
  ctx.fill()
  ctx.stroke();

  // 绘画左眼睛
  ctx.beginPath()
  ctx.ellipse(250, 250, 15, 30, 0, 0, Math.PI * 2);
  ctx.strokeStyle = black;
  ctx.fillStyle = black
  ctx.fill();
  ctx.stroke();

  // 绘画左眼睛高光白点
  ctx.beginPath()
  ctx.ellipse(245, 232, 4, 6, 0, 0, 2 * Math.PI)
  ctx.fillStyle = whtie
  ctx.fill()
  ctx.stroke();

  // 绘画右眼睛
  ctx.beginPath()
  ctx.ellipse(350, 250, 15, 30, 0, 0, Math.PI * 2);
  ctx.fillStyle = black
  ctx.fill();
  ctx.stroke();


  // 绘画右眼睛高光白点
  ctx.beginPath()
  ctx.ellipse(346, 232, 4, 6, 0, 0, 2 * Math.PI)
  ctx.fillStyle = whtie
  ctx.fill()
  ctx.stroke();

  // 嘴巴
  ctx.beginPath();
  ctx.arc(320, 350, 40, 0.5, 2, false);
  ctx.stroke();

  ctx.font = "100px sans-serif"
  ctx.strokeText("摩乐乐", 150, 550)
</script>

</html>```

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值