[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
プログラミング、3DCGとその他いろいろについて
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
<canvas id="drawLineSegmentWithWidthCanvas" width="300" height="200"></canvas> <script> (function () { var canvas = document.getElementById("drawLineSegmentWithWidthCanvas"); var context = canvas.getContext("2d"); context.lineWidth = 10; context.beginPath(); context.moveTo(0, 0); context.lineTo(300, 200); context.stroke(); })(); </script>
<canvas id="drawColoredLineSegmentCanvas" width="300" height="200"></canvas> <script> (function() { var canvas = document.getElementById("drawColoredLineSegmentCanvas"); var context = canvas.getContext("2d"); context.strokeStyle = "rgb(0, 0, 255)"; context.beginPath(); context.moveTo(0, 0); context.lineTo(300, 200); context.stroke(); })(); </script>