Add jquery magnifier plugin to svelte app

Hi, I want to add this magnifier plugin to my svelte app. How do I do that?
If this is a problem, are there any magnifier components I could use in a svelte app?
Thanks for any help

Hi, found this: svelte-magnifier which is what I want.
I’m new to svelte, I’ve installed and created a component, according to instructions. I have the following to display images:

    {#each users as user, i}
          <a id="p{i}" class="posPic">
            <img src="./images/{user.imgMain}" class="imgMain" alt={user.alt} />
          </a>
     {/each}

how would I implement svelte-magnifier for this gallery?
Thanks for any help

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.