【发布时间】:2022-01-17 22:08:31
【问题描述】:
我正在使用 Image Nextjs 组件将我的图像放在页面的中心 i want the picture to be like this 并保持其卷轴大小,但它已被像素化。 plusm 当我减小屏幕宽度时,图片在小屏幕视图中显示不正确a part of the picture disappears
<div
style={{
position: 'relative',
width: '1000px',
height: '500px',
alignItems: 'center',
}}
>
<Image src='/services.png' alt='' layout='fill' objectFitt='fill' />
</div>
我认为问题出在 div 样式上。我非常努力地修复了 div 的宽度和高度,但我仍然在页面中看到变形的图片。我也将objectFit改为'cover'但同样的问题:( 我感谢任何帮助和任何关于如何在不被像素化的情况下放置图像的解释。 太感谢了。 图片尺寸为:width=1454px and height=455px here is the picture
【问题讨论】: