有没有办法在KineticJS的Text对象中设置font-weight?
以下是示例代码:
var myText = new Kinetic.Text(
{
x: 350,
y: 50,
text: 'OK',
fontSize: 18,
fontFamily: 'Verdana',
fill: 'white'
});
我希望font-weight为100或200,而不是默认值(400)。在文档中没有找到fontWeight属性,我尝试了以下但没有成功:
感谢您的任何提示。
答案 0 :(得分:5)
使用fontStyle属性(提示:值必须是字符串 - 而不是数字):
var myText = new Kinetic.Text({
x:100,
y:100,
text:"Hello World!",
fill: 'red',
fontFamily:"Calibri",
fontSize:18,
fontStyle:"100"
});