francoischalifour / medium-zoom

🔎🖼 A JavaScript library for zooming images like Medium
https://medium-zoom.francoischalifour.com
MIT License
3.58k stars 161 forks source link

Optional Zoom #156

Closed mjshea1 closed 4 years ago

mjshea1 commented 4 years ago

The problem

Is there an option when you add medium-zoom to a vuepress site to disable it on some images within the markdown?

Solution

The ability to disable zoom on images within a vuepress site.

Implementation

I don't have an idea of how to implement it.

francoischalifour commented 4 years ago

You'll need to edit the selector option in the VuePress plugin, and add this no-zoom CSS class to the images you want to skip.

Example:

module.exports = {
  plugins: {
    '@vuepress/medium-zoom': {
      selector: 'img:not(.no-zoom)',
    }
  }
}