0

我需要设计带有阴影的窗口背景。所以我尝试了背景渐变,但我没有得到我所期望的,

我的代码,

".questionsContainer":{
    height:Ti.UI.FILL,
    width:Ti.UI.FILL,
    layout:'vertical',
    backgroundGradient: {
            type: "linear",
            startPoint: { x: "0%", y:"0%"},
            endPoint:   { x: "0%", y:"100%"},
            colors: [
                { color: "#3C3C3C", offset: 0.0 },//302E2E
                { color: "#696969", offset: 1.0 }
            ]
        }
}

我试过这个,但我需要应用类似于以下代码的样式,

 background-image:
    radial-gradient(
      #C0C0C0,
      #696969
    );

如何在我的代码中应用这种样式?

4

1 回答 1

1

我有一个关于这个问题的未解决的错误报告Cannot apply backgroundGradient via alloy.globals。因此,我认为您可能必须找到一种解决方法,直到它得到解决。

于 2014-10-29T13:09:30.360 回答