轻量的小程序 canvas 动画库
canvas 是 HTML5 的一个重要元素,它能够高效的绘制图形,但是过于底层,且粗糙的 Api,导致开发者很难使用它来做较为复杂的图形, 而且它的即时绘制无记忆特性,使得它内部的图形并不支持动画更不支持一切交互事件。 这样的问题出现在所有支持 canvas 的客户端上同样出现在 微信小程序中的 canvas 中, 由于小程序由jsCore支持,并没有window 对象,并且 canvas 的 Api 与标准的 canvas 的 Api有所出入,所以市面上绝大部分 canvas 库与它无缘。 而wxDraw也就应运而生,专门用于处理小程序上canvas的图形创建、图形动画以及交互问题的。
这些图形都可以在演示文件里看到 点这里
var rect = new Shape('rect', {x: 60, y: 60, w: 40, h: 40, fillStyle: "#2FB8AC", rotate: Math.PI/2 },'mix', true);
rect
let circle = new Shape('circle', { x: 100, y: 100, r: 40, sA: Math.PI/4, fillStyle: "#C0D860", strokeStyle: "#CC333F", rotate: 20, lineWidth: 0, needGra: 'line', gra: [[0, '#00A0B0'], [0.2, '#6A4A3C'], [0.4, '#CC333F'], [0.6, '#EB6841'], [1, '#EDC951']]}, 'fill', true)
let polygon = new Shape('polygon', { x: 200, y: 200, r: 40, sides: 9, //9 边形 fillStyle: "#FC354C", rotate: Math.PI / 4 }, 'mix', true)
let ellipse = new Shape('ellipse', { x: 200, y: 200, a: 40, b: 100, fillStyle: "#00A0B0", rotate: Math.PI / 7 }, 'mix', true)
let cshape = new Shape('cshape', { rotate: Math.PI / 2, points: [[70, 85], [40, 20], [24, 46], [2, 4], [14, 6], [4, 46]], lineWidth: 5, fillStyle: "#00A0B0", rotate: Math.PI / 7, needGra: 'circle', smooth:false, gra: [[0, '#00A0B0'], [0.2, '#6A4A3C'], [0.4, '#CC333F'], [0.6, '#EB6841'], [1, '#EDC951']] }, 'fill', true)
let line = new Shape('line', { points:[[240,373],[11,32],[28,423],[12,105],[203,41],[128,0.06]], strokeStyle: "#2FB8AC",lineWidth:1, rotate: 0, needShadow: true,smooth:false }, 'fill', true)
let text = new Shape('text', { x: 200, y: 200, text: "我是测试文字", fillStyle: "#E6781E", rotate: Math.PI / 3} 'fill', true)
这些动画都可以在演示文件里看到 点这里
这些事件都可以在演示文件里看到 点这里
支持
旁边 UI 小妹妹亲自示范 😜
是不是特别简单,特别方便!!!来,老铁们! star 走一波!!!
1
qdwang 2017-10-31 18:17:53 +08:00 via iPhone
支持 造福开发人员
|
2
bobiscool OP 为什么 你们只收藏不点评。。。。作者很孤独。。。
|
3
loethen 2017-11-01 09:55:30 +08:00
赞一下,不错
|
4
si 2017-11-01 10:22:14 +08:00
看起来很好玩
|
5
july1115 2017-11-03 15:52:44 +08:00
感谢,很棒,有需求就用上
|
6
bobiscool OP 看来小程序 开发者并不多啊
|
7
JenniferL 2018-05-07 15:21:17 +08:00
destroy 方法的 BUG 不修复了吗?
|