效果图

canvas绘制弯月

html结构

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title>canvas19</title>

<link rel="stylesheet" href="">

</head>

<body>

<canvas id="canvas" style ="border:1px solid #aaa;diplay:block;margin:50px auto;">

当前浏览器不支持canvas,请更换浏览器后再试

</canvas>

</body>

</html>

js脚本

<script>

window.onload = function(){

var canvas = document.getElementById("canvas");


canvas.width  = 800;

canvas.height = 800;


var context = canvas.getContext("2d");


context.arc(400,400,300,0.5*Math.PI,1.5*Math.PI,true);

context.moveTo(400,100);

context.arcTo(1200,400,400,700,(400-100)*dis(400,100,1200,400)/(1200-400));

context.stroke();

}


function dis(x1,y1,x2,y2){

return Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));

}

</script>


本文转自  素颜猪  51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1892889

相关文章:

  • 2021-11-30
  • 2021-06-27
  • 2021-08-12
  • 2022-01-11
  • 2021-04-07
  • 2021-11-10
  • 2021-05-13
  • 2021-06-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-14
  • 2022-01-10
  • 2022-12-23
  • 2021-11-25
  • 2021-10-25
相关资源
相似解决方案