Surface背景属性的不透明度

时间:2014-05-28 22:10:28

标签: javascript css famo.us

以下给了我错误

var textSurface = new Surface({
  content: 'Some text here',
  properties:{
    color: 'white',
    backgroundColor: rgba(0,0,0,0.7)
  }
});
  

未捕获的ReferenceError:未定义rgba

我的目标是仅使用背景颜色设置不透明度的文本颜色。 rgba用作css函数,但它似乎不适用于surface的属性。有人可以确认,是否有解决方法?

1 个答案:

答案 0 :(得分:4)

背景颜色需要是一个字符串。你所拥有的是一个未定义的实际JavaScript函数,因此就是错误。

backgroundColor: "rgba(0,0,0,0.7)"