- 当前 Bug 的表现(可附上截图)
2.4.2版本
- 预期表现
2.4.1版本
- 提供一个最简复现 Demo
// 设置渐变
var gradient = context.createLinearGradient(
200,
100,
100,
200
);
gradient.addColorStop(
'0.15',
"#7aa7cb"
// 'SkyBlue'
);
gradient.addColorStop(
'0.85',
// 'SteelBlue'
"#b8f1ef"
);
gradient.addColorStop(
'1.0',
// 'RoyalBlue'
"#8ab0ce"
);
context.setLineWidth(7);
context.setStrokeStyle(gradient);
context.setLineCap('round')
context.beginPath();
ctx.arc(110, 90, 80, 0.85 * Math.PI, 0.15 * Math.PI, false);
context.stroke();
context.draw();
这个问题修复了吗,今天也遇到这个问题了
是真机的问题还是开发工具的问题呢?
麻烦提供代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
是在开发工具上发生的。
代码片段
https://developers.weixin.qq.com/s/Avg0hPmC7s4o
好的,问题已知,会尽快修复哈
谢谢