0

我有一个带有背景 gif 的 GWT.Label。

根据状态,我想更改标签的颜色和图像。颜色更改已经有效,但我不知道如何更改背景图像(同时仍保留渐变):

我的.css:

/* creates a linear background gradient */
background: #000000;
background: url(myIcon.gif) no-repeat 15px, -webkit-linear-gradient(top, hsla(0,0%,100%,.5), hsla(0,0%,100%,0));
background: url(myIcon.gif) no-repeat 15px, -moz-linear-gradient
background: url(myIcon.gif) no-repeat 15px, -ms-linear-gradient
//etc

改变颜色的作品:

getElement().getStyle().setProperty("backgroundColor", "green");
//how to change the background image??

如何更改图像属性?

4

1 回答 1

1

如果我面临这种情况,而不是更改 css 的属性,我只需更改 css 类

状态1

lable.addClassName("state1");// in css with image1

状态2

lable.addClassName("state2");//in css with image2
于 2013-04-06T12:24:00.790 回答