收藏
回答

手机上,CanvasContext.fillText不支持填充渐变色文字吗?

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 Bug CanvasContext.fillText 微信安卓客户端 8.0.16 2.20.1

https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.fillText.html

比如这样,在开发者工具上生效,手机上就全黑色了

// Create gradient
var gradient=ctx.createLinearGradient(0,0,c.width,0);
gradient.addColorStop("0","magenta");
gradient.addColorStop("0.5","blue");
gradient.addColorStop("1.0","red");
// Fill with gradient
ctx.fillStyle=gradient;
ctx.fillText("Big smile!",10,90);
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容