我正在使用放大和缩小功能,通过使用npm库种植者。但问题是,每当图像被拖动时,它就会留下一些图像线。谁能帮我解决这个问题?
我应用了这个css:
cropper img {
max-width: 100%;
max-height: 100%;
height: auto;
}发布于 2022-11-22 06:03:24
我找到了解决办法:
通过将此CSS应用于cropper,
cropper img {
max-width: 100%;
max-height: 100%;
height: auto;
backface-visibility: hidden}
这些线会消失
https://stackoverflow.com/questions/74489838
复制相似问题