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

代碼
提交代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>慕課網Wiki</title> <style> #imooc{ border:1px solid #ccc; } </style> </head> <body> <canvas id="imooc"></canvas> <script> // 拿到一張白紙 const canvas = document.getElementById('imooc'); const ctx = canvas.getContext('2d'); // 打線筆移動到起點 ctx.moveTo(10,10); // 開始描線到終點 ctx.lineTo(100,50); // 選擇綠色的畫筆 ctx.strokeStyle="green"; // 開始用畫筆描邊 ctx.stroke(); </script> </body> </html>
運行結果