显示来自具有属性“length”的 bean 的图像视频的

发布于 2024-12-09 17:54:54 字数 296 浏览 0 评论 0原文

我需要显示视频对象的图像,视频长度位于图像的右下角。

我尝试了这个:

<h:graphicImage url="#{video.picUrl}" height="30" width="30">
    <h:outputText value="#{video.Length}" />
</h:graphicImage>

但是长度文本显示在图像之外。我怎样才能把它放在图像的右下角?

I need to display an image of a video object with the video length on the bottom right side of the image.

I tried this:

<h:graphicImage url="#{video.picUrl}" height="30" width="30">
    <h:outputText value="#{video.Length}" />
</h:graphicImage>

But the length text is shown outside the image. How can I get it on the bottom right inside the image?

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

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

发布评论

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

评论(1

や莫失莫忘 2024-12-16 17:54:54

这是一个纯粹的 HTML/CSS 问题。您首先需要弄清楚生成的 HTML/CSS 应该是什么样子才能实现您的功能需求。例如,以下 HTML

<span class="imageWithText">
    <img src="some-video.png" width="30" height="30" />
    <span class="text">123</span>
</span>

和 CSS

.imageWithText {
    position: relative;
}
.imageWithText .text {
    position: absolute; 
    bottom: 3px;
    right: 3px; 
    background-color: white;
    font-size: .5em;
}

应该适合您。

您会看到,.text 相对于 .imageWithText 是绝对定位的,bottomright 位于 上>3px,这样它就能很好地粘在右下角。

现在,要使用 JSF 生成相同的 HTML,代码应该类似于

<h:panelGroup styleClass="imageWithText">
    <h:graphicImage value="#{video.picUrl}" height="30" width="30" />
    <h:outputText styleClass="text" value="#{video.length}" />
</h:panelGroup>

相同的 CSS 是可重用的。

This is a pure HTML/CSS issue. You first need to figure how the generated HTML/CSS should look like to achieve your functional requirement. For example, the following HTML

<span class="imageWithText">
    <img src="some-video.png" width="30" height="30" />
    <span class="text">123</span>
</span>

with the following CSS

.imageWithText {
    position: relative;
}
.imageWithText .text {
    position: absolute; 
    bottom: 3px;
    right: 3px; 
    background-color: white;
    font-size: .5em;
}

should work out for you.

You see, the .text is absolutely positioned relative to the .imageWithText, with bottom and right on 3px so that it sticks nicely to the bottom right.

Now, to generate the same HTML with JSF, the code should look like

<h:panelGroup styleClass="imageWithText">
    <h:graphicImage value="#{video.picUrl}" height="30" width="30" />
    <h:outputText styleClass="text" value="#{video.length}" />
</h:panelGroup>

The same CSS is reuseable.

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