fastlion-picture-viewer
Version:
图片查看器
24 lines (21 loc) • 396 B
CSS
.react-picture-viewer {
position: relative;
display: block;
margin: 0;
padding: 0;
overflow: hidden;
}
.react-picture-viewer-bofore-loaded {
display: flex;
justify-content: center;
align-items: center;
}
.react-picture-viewer-bofore-loaded img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.react-picture-viewer img {
cursor: move;
position: absolute;
}