UNPKG

vf-wheelzoom

Version:

Fork of https://github.com/jackmoore/wheelzoom. Main reason of fork is to get a CommonJS compatible version of this script to npm

14 lines 306 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Wheelzoom</title> </head> <body> <img class='zoom' src='daisy.jpg' alt='Daisy!' width='555' height='320'/> <script src="wheelzoom.js"></script> <script> wheelzoom(document.querySelector('img.zoom')); </script> </body> </html>