亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>慕課網Wiki</title> <style> #imooc{ border:1px solid #ccc; } </style> </head> <body> <canvas id="imooc">您的瀏覽器不支持 HTML5 canvas 標簽</canvas> <script> const canvas = document.getElementById('imooc'); const ctx = canvas.getContext('2d'); ctx.moveTo(10,10); ctx.lineTo(10,100); ctx.lineTo(200,100); ctx.lineTo(200,10); ctx.closePath(); ctx.strokeStyle="blue"; ctx.fillStyle="#ccc"; ctx.lineWidth=8; ctx.stroke(); ctx.fill(); </script> </body> </html>
運行結果