最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

代碼
提交代碼
<!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 標(biāo)簽</canvas> <script> const canvas = document.getElementById('imooc'); canvas.width=600 canvas.height=300 const ctx = canvas.getContext('2d'); ctx.strokeStyle="#456795"; ctx.lineWidth=8; ctx.arc(150, 150, 100, 0, 1*Math.PI, false); // 繪制半圓,傳遞了第六個(gè)參數(shù)為 true ctx.closePath() ctx.stroke(); ctx.beginPath(); ctx.arc(450, 150, 100, 0, 1*Math.PI, true); // 繪制半圓,傳遞了第六個(gè)參數(shù)為 true ctx.closePath() ctx.stroke(); </script> </body> </html>
運(yùn)行結(jié)果