我正在尝试在framerjs中构建标签,根据文本的不同,它们可以有自动宽度。
可以为图层或最大宽度
设置自动宽度答案 0 :(得分:1)
text = new Layer(backgroundColor: "red")
text.style.width = "auto"
text.style.fontSize = "2em"
text.html = "abcd"
"自动" property不能在初始值设定项中使用(例如,new Layer(width: "auto")
),但可以通过style
属性传递。