hic-et-nunc/site/config/thumbs/home-slideshow.php
isUnknown 13040a9df3
All checks were successful
Deploy / Deploy to Production (push) Successful in 3s
home > slideshow : enable
2026-05-26 10:56:17 +02:00

20 lines
628 B
PHP

<?php
// Slideshow plein écran : toujours 100vw, pas de crop
// Widths couvrent du mobile (1x) jusqu'à 4K (1x)
return [
'home-slideshow' => [
'800w' => ['width' => 800],
'1200w' => ['width' => 1200],
'1600w' => ['width' => 1600],
'2000w' => ['width' => 2000],
'2560w' => ['width' => 2560],
],
'home-slideshow-webp' => [
'800w' => ['width' => 800, 'format' => 'webp'],
'1200w' => ['width' => 1200, 'format' => 'webp'],
'1600w' => ['width' => 1600, 'format' => 'webp'],
'2000w' => ['width' => 2000, 'format' => 'webp'],
'2560w' => ['width' => 2560, 'format' => 'webp'],
],
];