使用面料js,我画了一个圆圈,想要重现这个笔触渐变
circle_in.setGradient("stroke", {
type:"radial",
x1 : 0,
y1 : 0,
x2 : 0,
y2 : 0,
r1 : this._clock_radius*0.95,
r2 : this._clock_radius*1.05,
colorStops : {0 : "#333", 0.5: "#fff", 1:"#333"}
});
实际上我得到了
{{1}}
但不行。
任何帮助?