@kyverus/react-custom-magnifier
Version:
A Customizable React Component for Magnifying Images
23 lines (20 loc) • 397 B
CSS
#magnifier {
position: relative;
display: inline-flex;
}
#magnifier-cursor {
display: none;
position: fixed;
z-index: 2000;
border-radius: 9999px;
border: 2px solid;
background-repeat: "no-repeat";
}
#magnifier-display {
display: none;
z-index: 1000;
pointer-events: none;
overflow: hidden;
position: absolute;
background-repeat: "no-repeat";
}