Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML 画布填充和描边


Canvas 填充和描边

要为画布中的形状/对象定义填充颜色和轮廓颜色,我们使用以下属性

属性 描述
fillStyle 定义对象/形状的填充颜色
strokeStyle 定义对象/形状轮廓的颜色

fillStyle 属性

fillStyle 属性定义对象的填充颜色。

fillStyle 属性值可以是颜色(颜色名称、RGB、HEX、HSL)、渐变或图案。

示例

抱歉,您的浏览器不支持画布。

将填充颜色设置为“绿色”,并使用 fillRect() 方法绘制一个填充矩形

<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

ctx.fillStyle = "green";
ctx.fillRect(10,10, 100,100);
</script>
自己尝试 »


strokeStyle 属性

strokeStyle 属性定义轮廓的颜色。

strokeStyle 属性值可以是颜色(颜色名称、RGB、HEX、HSL)、渐变或图案。

示例

抱歉,您的浏览器不支持画布。

将轮廓颜色设置为“蓝色”,并使用 strokeRect() 方法绘制一个轮廓矩形

<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

ctx.strokeStyle = "blue";
ctx.lineWidth = 5;
ctx.strokeRect(10,10, 100,100);
</script>
自己尝试 »

组合 fillStyle 和 strokeStyle

完全可以将上面两个矩形组合起来。

示例

抱歉,您的浏览器不支持画布。
<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

// 填充矩形
ctx.fillStyle = "green";
ctx.fillRect(10,10, 100,100);

// 轮廓矩形
ctx.strokeStyle = "blue";
ctx.lineWidth = 5;
ctx.strokeRect(10,10, 100,100);
</script>
自己尝试 »

fillStyle 和 strokeStyle 带有 Alpha 通道

您也可以在 fillStylestrokeStyle 属性中添加 Alpha 通道以创建不透明度。

示例

抱歉,您的浏览器不支持画布。

fillStylestrokeStyle 属性的不透明度设置为 50%

<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

// 填充矩形
ctx.fillStyle = "rgb(0 255 0 / 50%)";
ctx.fillRect(10,10, 100,100);

// 轮廓矩形
ctx.strokeStyle = "rgb(0 0 255 / 50%)";
ctx.lineWidth = 5;
ctx.strokeRect(10,10, 100,100);
</script>
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.