第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

代碼
提交代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>慕課網(wǎng)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'); // 打線(xiàn)筆移動(dòng)到起點(diǎn) ctx.moveTo(10,10); // 開(kāi)始描線(xiàn)到終點(diǎn) ctx.lineTo(100,50); // 選擇綠色的畫(huà)筆 ctx.strokeStyle="green"; // 開(kāi)始用畫(huà)筆描邊 ctx.stroke(); </script> </body> </html>
運(yùn)行結(jié)果