20 lines
628 B
PHP
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'],
|
|
],
|
|
];
|