如何减小高度和宽度我正在使用react-image-magnify进行缩放。我想为固定的图像缩放控制设置固定的高度和宽度。
<ReactImageMagnify
{...{
smallImage: {
alt: "Wristwatch by Ted Baker London",
isFluidWidth: true,
src: data.image,
srcSet: data.image,
sizes: "(max-width: 480px) 100vw, (max-width: 1200px) 30vw, 360px"
},
largeImage: {
isFluidWidth: true,
src: data.image,
width: 1200,
height: 1800
},
enlargedImageContainerStyle: {
zIndex: "1"
}
}}
/>