HTML5 画布中形状位置和渐变位置有何关系?
有这样的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。必须调整渐变的大小以匹配形状的 x,y 变化。
Solved it. Had to adjust the size of the gradient to match the shape's x,y changes.