Canvas基础
HTML5中引入标签,用于图形的绘制,为图形的绘制提供了画布,是图形容器,具体的图形绘制由JavaScript来完成。
实例
class Bubble{ // ES6新增Class语法糖
constructor(ctx){ // 构造函数...147,186,255], [217,153,249], [129,199,132], [255,202,98], [255,164,119]]; // 颜色方案
this.ctx = ctx.getContext...var circle = {}; // 定义一个新的气泡对象
circle.r = this.randomInt(10,50); // 随机半径...// 调用产生新气泡
this.ctx.clearRect(0,0,this.ctx.canvas.width,this.ctx.canvas.height); // 清空画布