对钛合金窗口背景应用渐变颜色的问题

时间:2014-10-29 08:29:17

标签: css titanium titanium-mobile titanium-alloy tss

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

我的代码,

".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
    );

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

1 个答案:

答案 0 :(得分:1)

我有关于此问题Cannot apply backgroundGradient via alloy.globals的公开错误报告。所以,我认为在解决之前你可能需要找到一个解决方法。