第七色在线视频,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">您的瀏覽器不支持 HTML5 canvas 標簽</canvas> <script> const canvas = document.getElementById('imooc'); const ctx = canvas.getContext('2d'); ctx.strokeStyle="#456795"; ctx.lineWidth=18; //繪制第一條折線 ctx.beginPath() ctx.moveTo(30,20); ctx.lineTo(100,75); ctx.lineTo(30,130); ctx.lineJoin="miter"; ctx.stroke(); //繪制第二條折線 ctx.beginPath() ctx.moveTo(80,20); ctx.lineTo(150,75); ctx.lineTo(80,130); ctx.lineJoin="bevel"; ctx.stroke(); //繪制第三條折線 ctx.beginPath() ctx.moveTo(130,20); ctx.lineTo(200,75); ctx.lineTo(130,130); ctx.lineJoin="round"; ctx.stroke(); </script> </body> </html>
運行結(jié)果