码迷,mamicode.com
首页 > 其他好文 > 详细

canvas 绘制二次贝塞尔曲线

时间:2017-09-09 13:08:09      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:can   class   pat   技术分享   csharp   contex   tle   init   function   

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>canvas</title>
    <script>
        function init() {

            var canvas=document.getElementById(‘canvas‘);
            var ctx=canvas.getContext(‘2d‘);
            ctx.strokeStyle="dark";
            ctx.beginPath();
            ctx.moveTo(0,200);
            ctx.quadraticCurveTo(75,50,300,200);
            ctx.stroke();
            ctx.globalCompositeOperation="source-over";


            ctx.strokeStyle="blue";
            ctx.beginPath();
            ctx.moveTo(75,50);
            ctx.lineTo(0,200);
            ctx.moveTo(75,50);
            ctx.lineTo(300,200);
            ctx.stroke();

        }

    </script>
</head>
<body  onload="init();">
<canvas  id="canvas"  width="400"   height="400"></canvas>
</body>
</html>

  效果:

技术分享

 

 

2017-09-09   11:30:18 

canvas 绘制二次贝塞尔曲线

标签:can   class   pat   技术分享   csharp   contex   tle   init   function   

原文地址:http://www.cnblogs.com/guangzhou11/p/7497584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!