Canvas strokeStyle 属性
示例
用 strokeStyle = "red" 绘制一个矩形
JavaScript
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
ctx.strokeStyle = "red";
ctx.strokeRect(20, 20, 150, 100);
自己尝试 »
更多示例在下方。
描述
The strokeStyle
属性设置或返回用于描边的颜色、渐变或图案。
默认值为 #000000(纯黑色)。
另见
The fillStyle Property (设置填充颜色/样式)
The lineWidth Property (设置线宽)
The beginPath() Method (开始一个新的路径)
The moveTo() Method (将路径移动到一个点)
The lineTo() Method (在路径中添加一条线)
The stroke() Method (绘制当前路径)
The strokeRect() Method (绘制一个矩形)
语法
context.strokeStyle = color|gradient|pattern |
属性值
值 | 描述 | 播放它 |
---|---|---|
color | A CSS color value that indicates the stroke color of the drawing. Default value is #000000 | 播放它 » |
gradient | A gradient object (linear or radial) used to create a gradient stroke | |
pattern | A pattern object used to create a pattern stroke |
更多示例
示例
用渐变 stokeStyle 绘制一个矩形
JavaScript
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
// 创建渐变
const gradient = ctx.createLinearGradient(0, 0, 170, 0);
gradient.addColorStop("0", "magenta");
gradient.addColorStop("0.5", "blue");
gradient.addColorStop("1.0", "red");
// 用渐变填充
ctx.strokeStyle = gradient;
ctx.lineWidth = 5;
ctx.strokeRect(20, 20, 150, 100);
自己尝试 »
示例
用渐变 strokeStyle 写入文本 "Big smile!"
JavaScript
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
ctx.font = "30px Verdana";
// 创建渐变
const gradient = ctx.createLinearGradient(0, 0, c.width, 0);
gradient.addColorStop("0", "magenta");
gradient.addColorStop("0.5", "blue");
gradient.addColorStop("1.0", "red");
// 用渐变填充
ctx.strokeStyle = gradient;
ctx.strokeText("Big smile!", 10, 50);
自己尝试 »
浏览器支持
The <canvas>
element is an HTML5 standard (2014).
stokestyle
is supported in all modern browsers
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 9-11 |
❮ Canvas 参考