canvas api 速记
摘要:
基本骨骼 var ctx = document.getElementById('canvas').getContext('2d'); 矩形 实心: // 填充色 (默认为黑色) ctx.fillStyle = 'darkSlateBlue'; // 规定画布左上角坐标为 (0, 0) // 矩形左上 阅读全文
posted @ 2016-01-11 13:09 lessfish 阅读(406) 评论(0) 推荐(0) 编辑