UNPKG

photo-view

Version:

PhotoView - Pan, PinchZoom and Swipe for mobile

20 lines (19 loc) 592 B
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Image Zoom Test Page</title> <link rel="stylesheet" href="./styles/main.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> </head> <body> <script src="/node_modules/hammerjs/hammer.min.js"></script> <script src="./dist/build.js"></script> <div class="photo-view"> <img src="https://pa.namshicdn.com/product/68/8181/1-zoom.jpg" alt="" class="image-zoom"> </div> <script> var myImageZoom = new PhotoView('.photo-view', { tapToZoom: true }) </script> </body> </html>