HTML 画布 fill() 方法
HTML 画布中的 fill() 方法用于填充当前绘制路径。默认值为黑色。<canvas> 元素允许你使用 JavaScript 在网页上绘制图形。每个画布有两个元素,分别描述画布的高度和宽度,即 height 及 width。
以下是语法−
ctx.fill();
现在让我们看一个示例来实现画布的 fill() 方法−
示例
<!DOCTYPE html> <html> <body> <canvas id="myCanvas" width="450" height="250" style="border:2px solid blue;"> Your browser does not support the HTML5 canvas tag.</canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.beginPath(); ctx.rect(50, 60, 300, 200); ctx.fillStyle = "green"; ctx.fill(); </script> </body> </html>
输出
广告