绘制无圆形渐变
在 HTML5 中,当我们想要通过径向渐变填充形状时,我们使用:
ctx.createRadialGradient(centerX1, centerY1, radius1, centerX2, centerY2, radius2);
但是这种填充形状是通过圆形径向渐变。如何用椭圆径向渐变填充呢?
In HTML5 when we want to fill shape by radial gradient we use:
ctx.createRadialGradient(centerX1, centerY1, radius1, centerX2, centerY2, radius2);
but this fill shapes by circular radial gradient. How to fill it by elliptic radial gradient?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在绘制渐变之前转换画布上下文(示例):
Transform the canvas context before you draw the gradient (example):