首页->文章内容
在网页中画圆
[编辑:wsy] [点击:1938] [回应:0] [上传时间:2018-5-20 21:33:39]

 <div>

   

        <p>绘制圆形</p>

        <canvas id="myCanvas" width="400" height="400"></canvas>

        <script language="javascript">

            var canvas = document.getElementById('myCanvas');

            var ctx = canvas.getContext('2d');

            ctx.beginPath();

            ctx.arc(100,100,100,0,Math.PI*2,true);

            ctx.fillStyle = '#FF6600';

            ctx.fill();

        </script>

    </div>


blob.png


乐 排 行 板 . 版 权 所 有

京ICP备12001047号-3