我有一个带有背景 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??
如何更改图像属性?