HTML5 画布中形状位置和渐变位置有何关系?

发布于 2024-10-07 05:56:41 字数 396 浏览 4 评论 0原文

有这样的代码:

var gradient = ctx.createLinearGradient(0,0, 20, 0);

gradient.addColorStop(0.8, "rgb(250,250,0)");
gradient.addColorStop(1, "rgb(150,150,0)");

ctx.fillStyle = gradient;
ctx.fillRect(0, 0, 20, 20);

如果我移动 fillRect 的 x,y,产生的渐变不一样,它会改变。如果我为 createLinearGradient 的 x,y 分配相同的值,仍然不起作用。那么,我想在位置 100,100 绘制一个框,保留与 0,0 相同的线性渐变,如何实现呢?他们之间是什么关系?

谢谢!

Have this code:

var gradient = ctx.createLinearGradient(0,0, 20, 0);

gradient.addColorStop(0.8, "rgb(250,250,0)");
gradient.addColorStop(1, "rgb(150,150,0)");

ctx.fillStyle = gradient;
ctx.fillRect(0, 0, 20, 20);

If i move the fillRect's x,y, the resulting gradient is not the same, it changes. If i assign the same value to createLinearGradient's x,y, still does not work. So, i I want to draw a box in the position 100,100 retaining the same linear gradient than in 0,0, how could achieve it? What's the relation between them?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铁憨憨 2024-10-14 05:56:42

解决了。必须调整渐变的大小以匹配形状的 x,y 变化。

Solved it. Had to adjust the size of the gradient to match the shape's x,y changes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文