Google/GWT 创建 ImageResource 的例子理解:
interface MyResources extends ClientBundle {
@Source("image.png")
ImageResource image();
@Source("my.css");
CssResource css();
}
@sprite .myImage {
gwt-image: 'image';
}
我了解如何使用 ImageResources 和应用样式名称,但是......
在我的应用程序中,我有多个主题,它们使用 CSS 和延迟绑定应用于各种小部件。所以我定义了一个我想使用 .myImage 类的 CSS 规则(“背景”),但它没有做任何事情:
background {
background-attachment: fixed;
background-image: .myImage; //?? This is the question!
background-size: contain
}
在“背景”CSS 属性中使用 .myImage 类的语法是什么?看来我应该能够将 .myImage 类指定为背景图像的参数。
编辑:做了一些更多的研究,并找到了使用 DataResource 执行此操作的正确语法。
MyClientBundle extends ClientBundle {
//Background Image
@Source("resources/background.png")
DataResource backgroundImage();
}
(mypanel.css)
@url background backgroundImage;
.myPanel {
border-radius: 0px;
background-color:#ffffff;
opacity:0.6;
background-image: background;
}