建議還是好好研究一下ES6的Promise對(duì)象,jQuery是對(duì)這個(gè)的一個(gè)封裝實(shí)現(xiàn)。
2016-08-13
<canvas id="cvs" width='500' height='500'></canvas>
<script type="text/javascript">
//第四步:繪制矩形,只有線。內(nèi)容是空的
ctx.strokeRect(10, 10, 190, 100);
//以下演示填充矩形。
ctx.fillStyle = "blue";
ctx.fillRect(10,10,190,100);
<script type="text/javascript">
//第四步:繪制矩形,只有線。內(nèi)容是空的
ctx.strokeRect(10, 10, 190, 100);
//以下演示填充矩形。
ctx.fillStyle = "blue";
ctx.fillRect(10,10,190,100);
2016-08-09