04 Canvas 基础用法
基础用法
属性介绍
<img src="1.jpg" width="300" height="150" style="height:100px;" />
<canvas width="300" height="150" style="height:100px;"></canvas><canvas width="150" height="150">
你的浏览器不支持 canvas,请升级你的浏览器
</canvas>渲染上下文
const canvas = document.getElementById("yoo")
const ctx = canvas.getContext("2d")绘制图形
绘制矩形

绘制路径


贝塞尔曲线


Path2D
最后更新于