UNPKG

react-zoom

Version:

Lightweight and stateless modal component for React.js

31 lines (24 loc) 585 B
<!doctype html> <html> <title>zoom example</title> <style> * { margin: 0; padding: 0; } body { overflow-x: hidden; } .zoom_wrapper { background-color: grey; } .zoom_modal { background-color: red; } </style> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css"> <body> <div id="zoom-example"></div> <script src="./index.js"></script> </body> </html>