zooming

🔍 Image zoom that makes sense.

MIT License

Downloads
16.8K
Stars
1.6K
Committers
13

Bot releases are hidden (Show)

zooming - 2.1.1 Latest Release

Published by kingdido999 almost 6 years ago

Drop webkit vendor prefixes to fix Firefox cursor issue #116.

zooming - 2.0.0

Published by kingdido999 over 6 years ago

Improve UI Testing

Add end-to-end testing using cypress. #55

Breaking changes

  1. No longer listen to images with data-action="zoom" on initialization #68.
  2. Remove defaultZoomable option.

All of the following will no longer make images zoomable:

  1. Simply include a script.

  2. Initialize a Zooming instance:

new Zooming()
  1. Initialize a Zooming instance with defaultZoomable:
new Zooming({
    defaultZoomable: '.img-zoomable'
})

Instead, please ALWAYS call .listen() on target images after creating a Zooming instance:

const zooming = new Zooming({
    // options...
})

zooming.listen('.img-zoomable')
zooming - 1.5.0

Published by kingdido999 over 6 years ago

Support percentage value of the original image size in option customSize. #60 #61 #65

zooming - 1.4.2

Published by kingdido999 over 6 years ago

Support srcset for hi-res image #59.

zooming - 1.4.1

Published by kingdido999 over 6 years ago

  • Add back babel-plugin-transform-object-assign #53
  • Add .babelrc to .npmignore #54
zooming - 1.4.0

Published by kingdido999 over 6 years ago

Use the latest Rollup API to build bundles #52 with pkg.module support, which was suggested by @mahish .

zooming - 1.3.1

Published by kingdido999 over 6 years ago

Support pkg.module for rollup.

zooming - 1.3.0

Published by kingdido999 over 6 years ago

Support specifying individual image width and height after zoom-in #47 .

zooming - 1.2.7

Published by kingdido999 almost 7 years ago

Fix CSS grid display issue in Chrome #42.

zooming - 1.2.6

Published by kingdido999 almost 7 years ago

  • Fix onGrab and onMove event hooks.
  • Rewrite documentation page.
zooming - 1.2.5

Published by kingdido999 about 7 years ago

  • Fix hi-res image width and height #43.
zooming - 1.2.4

Published by kingdido999 about 7 years ago

Close zoomed image on window resize by default #41.

zooming - 1.2.3

Published by kingdido999 about 7 years ago

  • Partial fix to make image responsive to window resize #41.
zooming - 1.2.2

Published by kingdido999 over 7 years ago

  • Fix close on click overlay issue #40.
  • Fix test.
zooming - 1.2.1

Published by kingdido999 over 7 years ago

  • Handle horizontal scrolling #36.
  • Show build file size.
zooming - 1.2.0

Published by kingdido999 over 7 years ago

  • Drop multitouch functionality for touch devices.
  • Reduce file size.
zooming - 1.1.7

Published by kingdido999 over 7 years ago

Remove onBeforeMove callback.
Update dev dependencies.

zooming - 1.1.6

Published by kingdido999 over 7 years ago

  • Clean up utils and modules.
  • Remove handling for overflow:hidden parents.
zooming - 1.1.5

Published by kingdido999 over 7 years ago

  • Better build script terminal output.
  • Support open up image in new tab while holding meta key.
zooming - 1.1.4

Published by kingdido999 over 7 years ago

Add zIndex option #30.