如何设置字体大小 font-family
我有这样的代码,但它不起作用,
var t = r.text(100, 100, 'test');
t.attr({font-size: 16});
给我错误,
missing : after property id
这里是 raphael.js 的文档 http://raphaeljs.com/reference.html
i have code like this but its not working
var t = r.text(100, 100, 'test');
t.attr({font-size: 16});
giving me error
missing : after property id
here is documentation for raphael.js
http://raphaeljs.com/reference.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于名称中带有连字符的属性,您需要使用字符串文字。
For attributes with a hyphen in the name, you need to use a string literal.
检查以下几行:
Check the below lines: