gpt4 book ai didi

kineticjs - 有没有办法在 Kinetic.Text (KineticJS) 中设置字体粗细?

转载 作者:行者123 更新时间:2023-12-02 23:13:33 24 4
gpt4 key购买 nike

有没有办法在 KineticJS 的 Text 对象中设置字体粗细?

这里是示例代码:

  var myText = new Kinetic.Text(
{
x: 350,
y: 50,
text: 'OK',
fontSize: 18,
fontFamily: 'Verdana',
fill: 'white'
});

我希望字体粗细为 100 或 200,而不是默认值 (400)。在文档中找不到 fontWeight 属性,我尝试了以下方法但没有成功:

  • 使用 fontStyle 属性(可让您指定粗体、普通、斜体)
  • 设置 id 属性并尝试通过 CSS 设置 font-weight。

感谢您的任何提示。

最佳答案

使用 fontStyle 属性(提示:该值必须是字符串,而不是数字):

var myText = new Kinetic.Text({
x:100,
y:100,
text:"Hello World!",
fill: 'red',
fontFamily:"Calibri",
fontSize:18,
fontStyle:"100"
});

关于kineticjs - 有没有办法在 Kinetic.Text (KineticJS) 中设置字体粗细?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19968429/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com