react-magnify
Version:
Magnifying glass for image zoom using ReactJS
25 lines (24 loc) • 454 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>React App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#wrapper {
z-index: 1;
background-color: white;
opacity: 0.8;
filter: alpha(opacity=80);
height: 500px;
}
button {
padding: 5px;
margin: 5px;
}
</style>
</head>
<body>
<div id="wrapper">Loading...</div>
</body>
</html>