内联样式的图像精灵?

发布于 2024-11-05 23:56:10 字数 218 浏览 0 评论 0原文

通过使用同级 CssResource 和 ImageResource 访问器显式定义 ClientBundle,我可以成功使用图像精灵 (@sprite)。但是我想知道使用精灵是否意味着必须有一个单独的.css文件。如果我使用 内联定义样式,如何获取与 gwt-image: 一起使用的图像访问器的已知名称?

I am able to use image sprites (@sprite) successfully by explicitly defining a ClientBundle with sibling CssResource and ImageResource accessors. However I'm wondering whether using a sprite means that must have a separate .css file. If I define my styles inline with <ui:style>, how do I get a known name for an image accessor to use with gwt-image:?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞笑我太脆弱 2024-11-12 23:56:10

回答了我自己的问题:

<ui:style>
   @sprite .panel {
      gwt-image: "titleBackground";
   }
</ui:style>

<ui:image field='titleBackground' src="constants/title-bg.jpg" />

同一模板中图像资源的字段名称用作生成的客户端包中图像访问器函数的名称。

Answered my own question:

<ui:style>
   @sprite .panel {
      gwt-image: "titleBackground";
   }
</ui:style>

<ui:image field='titleBackground' src="constants/title-bg.jpg" />

The field names of image resources in the same template serve as the names of image accessor functions in the generated client bundle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文