Simulate "Open image in new tab"
Answered
White-tailed Tropicbird posted this in #help-forum
White-tailed TropicbirdOP
Is there any way to simulate "open image in new tab", but after clicking on the image?
NextJS generates a nice image preview page with the ability to zoom, and I'd like for the user to go to that page after clicking.
I can't just directly link to an image because I'm using a separate cdn for images.
NextJS generates a nice image preview page with the ability to zoom, and I'd like for the user to go to that page after clicking.
I can't just directly link to an image because I'm using a separate cdn for images.
Answered by White-tailed Tropicbird
but I figured out I can just link to
/_next/image?url=SOMEURL&w=3840&q=1004 Replies
@White-tailed Tropicbird Is there any way to simulate "open image in new tab", but after clicking on the image?
NextJS generates a nice image preview page with the ability to zoom, and I'd like for the user to go to that page after clicking.
I can't just directly link to an image because I'm using a separate cdn for images.
so essentially you want to implement that "click to enlarge" feature?
(it is different from "open image in new tab")
@joulev so essentially you want to implement that "click to enlarge" feature?
White-tailed TropicbirdOP
I want to link the page that opens when clicking "open image in new tab"
White-tailed TropicbirdOP
but I figured out I can just link to
/_next/image?url=SOMEURL&w=3840&q=100Answer