JavaScript 中的 fillRect() 函数
在本文中,你将学习如何使用 JavaScript fillRect()
函数在画布上创建具有定义宽度和高度的矩形。
在 JavaScript 中使用 fillRect()
函数
HTML 画布的 fillRect()
函数在网页上生成一个填充矩形。黑色
是默认颜色。使用 JavaScript,你可以使用 canvas
元素在网页上绘制图片。
每个画布包含两个组件,分别指示其高度和宽度、高度和宽度。
语法:
obj.fillRect(a, b, width, height);
a
是 Rectangle 起点的 x 轴位置,b
是 Rectangle 起点的 y 轴位置。width
是矩形的宽度,可以是正数也可以是负数,其中正值显示在右侧,而负值显示在左侧。
height
是 Rectangle 的高度,它也可以是正数或负数。正值在减少,而负值在增加。
示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fillRect</title>
</head>
<body>
<h1>fillRect canvas JavaScript</h1>
<canvas id="canvas" height="300" width="300">
</canvas>
</body>
<script>
function drRect() {
const canva = document.querySelector('#canvas');
if (!canva.getContext) {
return;
}
const rect = canva.getContext('2d');
rect.fillStyle = '#800080';
rect.fillRect(50, 50, 200, 250);
}
drRect();
</script>
</html>
运行代码
使用 document.querySelector()
方法选择画布元素。确定浏览器是否支持画布 API。
获取 2D 绘图上下文对象。将填充样式更改为 #800080
,紫色
颜色并使用 fillRect()
函数绘制矩形。
矩形的宽度为 200 像素,高度为 250 像素,从 (50, 50) 开始。
输出:
相关文章
Do you understand JavaScript closures?
发布时间:2025/02/21 浏览次数:108 分类:JavaScript
-
The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.
Do you know about the hidden traps in variables in JavaScript?
发布时间:2025/02/21 浏览次数:178 分类:JavaScript
-
Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av
How much do you know about the Prototype Chain?
发布时间:2025/02/21 浏览次数:150 分类:JavaScript
-
The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start
用 jQuery 检查复选框是否被选中
发布时间:2024/03/24 浏览次数:102 分类:JavaScript
-
在本教程中学习 jQuery 检查复选框是否被选中的所有很酷的方法。我们展示了使用直接 DOM 操作、提取 JavaScript 属性的 jQuery 方法以及使用 jQuery 选择器的不同方法。你还将找到许多有用的
jQuery 中的 Window.onload 与 $(document).ready
发布时间:2024/03/24 浏览次数:180 分类:JavaScript
-
本教程演示了如何在 jQuery 中使用 Window.onload 和 $(document).ready 事件。