Giter Site home page Giter Site logo

Next/Prev image feature? about medium-zoom HOT 9 OPEN

gitrequests avatar gitrequests commented on May 20, 2024 49
Next/Prev image feature?

from medium-zoom.

Comments (9)

marsjaninzmarsa avatar marsjaninzmarsa commented on May 20, 2024 8

My expectation / hope is this works closer to a lightbox - pressing an arrow key swaps the image in place - no animations.

Or even better - with simple slide animation. 🤩

from medium-zoom.

tasinttttttt avatar tasinttttttt commented on May 20, 2024 5

I'm using this.
Basically listening for whatever triggers, then opening and closing the viewer with the proper image index.

Not sure it serves everybody's purposes as it's a bit of a rough ride visually (all that opening and closing)... but it worked pretty well in my case :^) .

Here's an example of handling left and arrow key navigation.

const zoom = mediumZoom([images here])

zoom.on('open', attachKeyEvents)
zoom.on('close', detachKeyEvents)

const attachKeyEvents = e => {
    document.addEventListener('keyup', handleKey, false)
}
const detachKeyEvents = e => {
    document.removeEventListener('keyup', handleKey, false)
}
const handleKey = e => {
    const images = zoom.getImages()
    const currentImageIndex = images.indexOf(zoom.getZoomedImage())
    let target

    if (images.length <= 1) {
      return
    }

    switch (e.code) {
      case 'ArrowLeft':
        target = currentImageIndex - 1 < 0 ?
          images[images.length - 1] : images[currentImageIndex - 1]
        zoom.close().then(() => {
          zoom.open({
            target: target
          })
        })
        break;
      case 'ArrowRight':
        target = currentImageIndex + 1 >= images.length ?
          images[0] : images[currentImageIndex + 1]
        zoom.close().then(() => {
          zoom.open({
            target: target
          })
        })
        break;
      default:
        break;
    }
}

from medium-zoom.

edwardhorsford avatar edwardhorsford commented on May 20, 2024 4

@tasinttttttt I've used your script. Many thanks.

One thing I added was target.scrollIntoView(); after closing the viewer. This way the scrollbar roughly matches up with the image that's been opened and it's more obvious when you're at the top or bottom.

from medium-zoom.

edwardhorsford avatar edwardhorsford commented on May 20, 2024 2

@francoischalifour In @tasinttttttt's implementation, when you press an arrow key, they first call zoom.close on the existing item and then zoom.open on the next item. This causes Medium-zoom to close, animate the image away, then animate the new image in to place.

My expectation / hope is this works closer to a lightbox - pressing an arrow key swaps the image in place - no animations.

from medium-zoom.

edwardhorsford avatar edwardhorsford commented on May 20, 2024 1

I'd really love some way of doing this without opening and closing the viewer.

from medium-zoom.

iammatthias avatar iammatthias commented on May 20, 2024 1

Pagination would be great. I wouldn't mind replacing React-Images in the image gallery with medium-zoom if there was a way to easily go between images.

from medium-zoom.

francoischalifour avatar francoischalifour commented on May 20, 2024

Glad you worked your way around with the current API, @tasinttttttt.

I also developed a plugin for previous and next images. However, it needs more testing. I don't have an ETA yet.

from medium-zoom.

francoischalifour avatar francoischalifour commented on May 20, 2024

@edwardhorsford What do you mean by "without opening and closing the viewer"?

from medium-zoom.

zmts avatar zmts commented on May 20, 2024

@tasinttttttt tnx for snippet! Works fine!

from medium-zoom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.