摘要: 一、Canvas第三方类库 1、常见的第三方类库 konva.js body{ margin:0; } //创建舞台 var stage=new Konva.Stage({ container:" box", width:window.innerWidth, height:window.innerH 阅读全文
posted @ 2017-11-21 21:21 不完美的完美 阅读(3742) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html 封装 构造函数 绘制矩形 html{ overflow:hidden; } //构造函数 function Rect(options){ this.init(options); } Rect.prototype={ init:function(options){ opt 阅读全文
posted @ 2017-11-21 19:04 不完美的完美 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 制作饼状图 <!DOCTYPE html canvas绘制扇形图 body{ background: ccc; } canvas{ background: fff; } (function(){ //定义数据 var data = [ {title:"apple", value:0.24, colo 阅读全文
posted @ 2017-11-21 12:39 不完美的完美 阅读(1670) 评论(0) 推荐(0) 编辑