赞
踩
设置一个HTML5画布的颜色,我们可以使用strokeStyle属性画布的背景下,它可以设置为颜色字符串如红色、绿色或蓝色,十六进制值,如# FF0000或# 555,或一个RGB值如RGB(255,0,0)。
- <!DOCTYPE HTML>
- <html>
- <head>
- <style>
- body {
- margin: 0px;
- padding: 0px;
- }
- </style>
- </head>
- <body>
- <canvas id="myCanvas" width="578" height="200"></canvas>
- <script>
- var canvas = document.getElementById('myCanvas');
- var context = canvas.getContext('2d');
-
- context.beginPath();
- context.moveTo(100, 150);
- context.lineTo(450, 50);
- context.lineWidth = 10;
-
- // set line color
- context.strokeStyle = '#ff0000';
- context.stroke();
- </script>
- </body>
- </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。