MAJ gallery.js.php

This commit is contained in:
LC 2023-10-09 12:55:55 +02:00
parent 53d0b3cf89
commit 2ff79ec5ca
1 changed files with 6 additions and 11 deletions

View File

@ -1,11 +1,9 @@
/**
* This file is part of DeltaCMS.
* Album Photo /view/gallery
*/
/**
* Galerie d'image
*/
$(".galleryGalleryPicture").simpleLightbox({
$(".galleryGalleryPicture").simpleLightbox({
captionSelector: "self",
captionType: "data",
captionsData: "caption",
@ -13,29 +11,26 @@ $(".galleryGalleryPicture").simpleLightbox({
});
$(function () {
// @Lionel 2019
var taille = "<?php echo $this->getData(['theme','site', 'width']); ?>";
switch(taille)
{
case '75vw':
$('a.galleryPicture').css('height', '165px');//view/index
$('a.galleryGalleryPicture').css('height', '110px');//view/gallery
$('div.galleryGalleryName').css('font-size', '0.8em');//view/gallery
$('a.galleryGalleryPicture').css('height', '125px');
$('div.galleryGalleryName').css('font-size', '0.8em');
$('div.galleryGalleryName').css('line-height', '1em');
break;
case '85vw':
$('a.galleryPicture').css('height', '200px');
$('a.galleryGalleryPicture').css('height', '135px');
$('div.galleryGalleryName').css('font-size', '0.85em');
$('div.galleryGalleryName').css('line-height', '1em');
break;
case '95vw':
$('a.galleryPicture').css('height', '235px');
$('a.galleryGalleryPicture').css('height', '160px');
$('div.galleryGalleryName').css('font-size', '0.9em');
break;
default:
$('a.galleryPicture').css('height', '250px');
$('a.galleryGalleryPicture').css('height', '185px');
$('div.galleryGalleryName').css('font-size', '1em');
break;