gpt4 book ai didi

reactjs - 如何使用 Semantic-UI-React 在标题中渲染背景图像

转载 作者:行者123 更新时间:2023-12-03 14:31:00 25 4
gpt4 key购买 nike

我正在使用 Semantic-UI-React 主题,并希望使用覆盖整个标题的不透明背景图像对其进行自定义。然后我会在上面添加一个 Logo 和文字。我似乎无法获取 <Header> 中的图像属性在职的。我尝试过很多组合。

这是我的 <Container><Header>代码 React :

  <Container>
<Header
as='h1'
inverted
style={{
backgroundImage: `url(${"images/image_03-1024x320.jpg"})`,
backgroundSize: 'cover',
fontSize: mobile ? '2em' : '4em',
fontWeight: 'normal',
marginBottom: 0,
marginTop: mobile ? '1.5em' : '3em',
}}
/>
</Container>
)

结果是 Header 中图像的一小部分.

最佳答案

如果没有工作示例来检查,很难确定,但我怀疑您需要添加宽度和高度。此外,您可能需要使 h1 显示 inline-block。试试这个:

<Container>
<Header
as='h1'
inverted
style={{
width: 1024,
height: 320,
display: 'inline-block',
opacity: 0.5,
backgroundImage: `url(${"images/image_03-1024x320.jpg"})`,
backgroundSize: 'cover',
fontSize: mobile ? '2em' : '4em',
fontWeight: 'normal',
marginBottom: 0,
marginTop: mobile ? '1.5em' : '3em',
}}
>
Hello World
</Header>
</Container>

关于reactjs - 如何使用 Semantic-UI-React <Container> 在标题中渲染背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55666318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com