Displays a single image with preview and tranformation options.
import { Image } from 'primereact/image';
Image is used similar to the standard img element.
<Image src="/images/galleria/galleria7.jpg" alt="Image" width="250" />
Enabling preview mode displays a modal layer when the image is clicked to provide transformation options such as rotating and zooming.
<Image src="/images/galleria/galleria10.jpg" alt="Image" width="250" preview />
Use the zoomSrc to select a higher resolution image to display in preview mode.
<Image src="/images/galleria/galleria14.jpg" zoomSrc="/images/galleria/galleria14.jpg" alt="Image" width="80" height="60" preview />
An eye icon is displayed by default when the image is hovered in preview mode. Use the indicatorIcon prop for custom content.
<Image src="/images/galleria/galleria12.jpg" indicatorIcon={icon} alt="Image" preview width="250" />
Following is the list of structural style classes, for theming classes visit theming page.
Name | Element |
---|---|
p-image | Container element |
p-image-preview-container | Container element with preview enabled. |
p-image-preview-indicator | Mask layer over the image when hovered. |
p-image-preview-icon | Icon of the preview indicator. |
p-image-mask | Preview overlay container. |
p-image-toolbar | Transformation options container. |
p-image-action | An element inside the toolbar. |
p-image-preview | Image element inside the preview overlay. |
The preview button is a native button element with an aria-label that refers to the aria.zoomImage property of the locale API by default, with previewButtonPropsyou may use your own aria roles and attributes as any valid attribute is passed to the button element implicitly.
When preview is active, dialog role with aria-modal is applied to the overlay image container.
Button controls use aria.rotateRight, aria.rotateLeft, aria.zoomIn, aria.zoomOut and aria.close from the locale API as aria-label.
When preview is activated, close button receives the initial focus.
Key | Function |
---|---|
tab | Moves focus through button bar. |
enter | Activates the button. |
space | Activates the button. |
esc | Closes the image preview. |