21 lines
638 B
PHP
21 lines
638 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
// Slideshow projet : 50vw desktop (> 1000px), 100vw mobile
|
||
|
|
// Widths couvrent mobile 3x jusqu'à desktop 4K 2x
|
||
|
|
return [
|
||
|
|
'project-slideshow' => [
|
||
|
|
'500w' => ['width' => 500],
|
||
|
|
'800w' => ['width' => 800],
|
||
|
|
'1100w' => ['width' => 1100],
|
||
|
|
'1400w' => ['width' => 1400],
|
||
|
|
'1800w' => ['width' => 1800],
|
||
|
|
],
|
||
|
|
'project-slideshow-webp' => [
|
||
|
|
'500w' => ['width' => 500, 'format' => 'webp'],
|
||
|
|
'800w' => ['width' => 800, 'format' => 'webp'],
|
||
|
|
'1100w' => ['width' => 1100, 'format' => 'webp'],
|
||
|
|
'1400w' => ['width' => 1400, 'format' => 'webp'],
|
||
|
|
'1800w' => ['width' => 1800, 'format' => 'webp'],
|
||
|
|
],
|
||
|
|
];
|