Accessibility

Keyboard navigation, ARIA, and focus management in the gallery.

Feature Status
Keyboard navigation (← → Escape) Supported in lightbox and dialog
alt text on all images Passed through via GalleryImage.alt
NgOptimizedImage ( ngSrc ) Enforces dimensions, improves LCP
Focus trap in lightbox/dialog Partial — to be improved in v1.1
ARIA roles on modal overlays Planned for v1.1
prefers-reduced-motion Planned for v1.1

Provide descriptive alt text for every image — screen readers read this to users:

images: GalleryImage[] = [
  {
    src: 'mountain.jpg',
    alt: 'Snow-capped mountain peak at sunrise with pink sky', // descriptive!
    width: 1920,
    height: 1080,
  },
];