01010101010101010101
01010101010101010101
01010101010101010101

Loading...

OptimizedImage Component

Load images efficiently with lazy-loading and responsive features

The OptimizedImage component helps improve performance by implementing best practices for image loading. It supports lazy loading, responsive images, WebP format, and placeholder images for better user experience.

Live Examples

Laptop na biurku

Example 1 | With placeholder and srcset

Smartfon na stole

Example 2 | With placeholder and srcset

Słuchawki bezprzewodowe

Example 3 | With placeholder and srcset

Konsola do gier

Example 4 | With placeholder and srcset

Usage Examples

Podstawowe użycie

<OptimizedImage 
  src="ścieżka/do/obrazka.jpg"
  alt="Opis obrazka"
/>
					

Z placeholderem

<OptimizedImage 
  src="ścieżka/do/obrazka.jpg"
  alt="Opis obrazka"
  placeholder="ścieżka/do/małego-placeholdera.jpg"
/>
					

Responsywne obrazy

<OptimizedImage 
  src="ścieżka/do/obrazka.jpg"
  alt="Opis obrazka"
  srcset="obraz-mały.jpg 400w, obraz-średni.jpg 800w, obraz-duży.jpg 1200w"
  sizes="(max-width: 768px) 100vw, 50vw"
/>
					

Z obsługą WebP

<OptimizedImage 
  src="ścieżka/do/obrazka.jpg"
  alt="Opis obrazka"
  srcWebp="ścieżka/do/obrazka.webp" 
  srcsetWebp="obraz-mały.webp 400w, obraz-średni.webp 800w, obraz-duży.webp 1200w"
/>
					

Props Reference

PropTypeDefaultDescription
srcstring | undefinedundefinedMain image source URL
altstring''Alternative text for accessibility
classNamestring''Additional CSS classes
placeholderstring | nullnullLow-resolution image to show while loading
lazybooleantrueWhether to use lazy loading
widthnumber | nullnullImage width
heightnumber | nullnullImage height
srcsetstring | nullnullResponsive srcset attribute
sizesstring | nullnullResponsive sizes attribute
srcWebpstring | nullnullWebP format source URL
srcsetWebpstring | nullnullWebP format srcset attribute
formatstring'auto'Image format preference (auto, webp, avif)
autoSrcSetbooleanfalseAutomatically generate srcset based on breakpoints
breakpointsnumber[][640, 960, 1280, 1920]Width breakpoints for auto srcset generation
rootMarginstring'200px'Root margin for intersection observer
fetchPriority'auto' | 'high' | 'low''auto'Browser hint for image loading priority
qualitynumber80Image quality (0-100)
generatePlaceholderbooleanfalseAuto-generate a low quality placeholder from source
loadHighResOnIdlebooleanfalseLoad higher quality image when user is idle
highResQualitynumber95Quality of high-resolution image (0-100)
idleTimeoutnumber3000Time in ms before user is considered idle

Runed Integration

The OptimizedImage component leverages several utilities from the Runed library to enhance functionality while using Svelte 5 runes:

  • IsMounted - Tracks component mounting state to prevent memory leaks and ensure proper lifecycle management.
  • useIntersectionObserver - Efficiently implements lazy loading by only loading images when they enter the viewport.
  • useEventListener - Manages image load and error events with proper cleanup.
  • ElementSize - Reactively tracks the image container dimensions for responsive behavior.
  • IsIdle - Detects when the user is idle to load higher quality versions of images.

Advanced Usage

Auto-generated responsive images

<OptimizedImage 
  src="https://example.com/image.jpg"
  alt="Example image"
  autoSrcSet={true}
  breakpoints={[400, 800, 1200, 1600]}
  sizes="(max-width: 768px) 100vw, 50vw"
/>
				

High quality on idle

<OptimizedImage 
  src="https://example.com/image.jpg"
  alt="Example image"
  loadHighResOnIdle={true}
  highResQuality={95}
  idleTimeout={2000}
/>
				

Auto-generated placeholders

<OptimizedImage 
  src="https://example.com/image.jpg"
  alt="Example image"
  generatePlaceholder={true}
/>
				

Format detection and prioritization

<OptimizedImage 
  src="https://example.com/image.jpg"
  alt="Example image"
  format="auto"  {/* Will try AVIF, then WebP, then fallback */}
  fetchPriority="high" {/* Prioritize this image */}
/>
				

Benefits

🚀

Performance

Lazy loading defers loading images until they enter the viewport, reducing initial page load time.

📱

Responsive

Load appropriate image sizes based on viewport size, saving bandwidth on mobile devices.

🖼️

User Experience

Placeholders provide visual feedback during loading, reducing content layout shifts.