Web 接口
Canvas API - 提供了一种通过 JavaScript 和 HTML <canvas> 元素绘制图形的方法
结果
源代码:
点击运行 »
<canvas id="canvas"></canvas> <script> const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); ctx.fillStyle = 'green'; ctx.fillRect(10, 10, 150, 100); </script>
运行结果:
点击运行 »