我正在使用nextjs
。我想使用next/image
为我的背景图像为一个div。我看到了几个答案,但每个人都张贴全屏背景图像使用next/image
,而不是为一个单一的div背景图像。我得到了这个https://uharston.medium.com/next-js-image-optimization-on-background-images-65de18ea03f5。但它为全屏。我可以使用正常的背景图像,但它没有优化像next/image。
下面是我尝试的代码:
import Image from 'next/image'
export default function Home() {
const imgURL = "https://i.postimg.cc/kXb4L4hB/abstract-blur-empty-green-gradient-studio-well-use-as-backgroundwebsite-templateframebusiness-report.jpg"
return (
<div style={{ backgroundColor: "black", height: "100vh" }}>
<h1 style={{ color: "white", textAlign: "center" }}>Home Page </h1>
{/* Background Image */}
<div style={{ height: "500px", position: "relative" }}>
<Image
alt="main"
src={imgURL}
fill
style={{ objectFit: "cover", objectPosition: "center" }}
quality={100}
/>
</div>
{/* Content should come over image */}
<div style={{ display: "flex", alignItems: "center", flexDirection: "column" }}>
<h3 style={{ color: "white" }}>Welcome Home</h3>
<h4 style={{ color: "white" }}>Tom</h4>
</div>
</div>
)
}
我需要这样的x1c 0d1x
但我得到了这个
我希望Welcome Home and Tom Text
是在图像。请帮助我一些解决方案。
1条答案
按热度按时间wnavrhmk1#
您可以将图像设置为div的背景,如下所示:
或者使用
next/Image
: