A pure JavaScript image zooming plugin; as seen on Medium.com.
Has no jQuery or Bootstrap dependencies.
This is a port of the original version by @fat: https://github.com/fat/zoom.js.
You can use zoom.js directly as a script, or install via npm.
- Link the zoom.js and zoom.css files to your site or application.
<link href="css/zoom.css" rel="stylesheet">
<script src="dist/zoom.js"></script>
- Add a
data-action="zoom"
attribute to the images you want to make zoomable. For example:
<img src="img/blog_post_featured.png" data-action="zoom">
- Install the package:
npm i @nishanths/zoom.js
- Link the zoom.css file to your application.
<link href="css/zoom.css" rel="stylesheet">
- Import the package and call
zoom.setup(elem)
for each image you want to make zoomable.
import { zoom } from "@nishanths/zoom.js";
var imgElem = new Image();
imgElem.src = "tree.png";
document.body.appendChild(imgElem);
zoom.setup(imgElem);
https://nishanths.github.io/zoom.js
It has the same behavior and all the features from the original implementation. But:
* In addition to the dist/ scripts, it's available as an npm module.
* Browser compatibility may be lower. Uses the transitionend event without
vendor prefixes, so IE 10 or higher.
This is a fork of the original zoom.js implementation by @fat. Copyrights for the original project are held by @fat. All other copyright for changes in the fork are held by Nishanth Shanmugham.
Copyright (c) 2013 @fat The MIT License. Copyright © 2016 Nishanth Shanmugham.