-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage with Next.js image component #2105
Comments
Are you trying to use photoswipe directly or something like react-photoswipe-gallery? If you're using react-photoswipe-gallery, this is how I'm doing it and it works fine:
|
I think @televators’ suggestion just sets the thumbnail/trigger image as a Next image component. The part that controls the image displayed in the lightbox is set in the I ran into the same issue as @branislavbrincko and got the image displayed in the lightbox via Next’s image component, as shown below. Note that this breaks the visual transition of the thumbnail ‘growing’ into the full lightbox image. <Item
width={1000}
height={600}
content={
// This is the lightbox image
<Image
src={imageUrl}
alt=''
width={1000}
height={600}
/>
}
>
{({ ref, open }) => (
// This is the thumbnail
<Image
src={imageUrl}
alt=''
width={250}
height={150}
ref={ref}
onClick={open}
/>
)}
</Item> The trick is to set the |
I would like to use Next.js image component for the image displayed in lightbox (to take advantage of the Next.js optimizations, like not showing extra large images on mobile). Can this be done? Thanks in advance.
The text was updated successfully, but these errors were encountered: