Add field for film used in photos

This commit is contained in:
2025-11-19 23:02:40 +13:00
parent facb2b0f99
commit 4bad9e095e
2 changed files with 6 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ const photoLinks = await Promise.all(
const photoLinks = photoLinksElement ? JSON.parse(photoLinksElement.textContent || '[]') : [];
const titleEl = document.getElementById('photo-title');
const cameraEl = document.getElementById('photo-camera');
const filmEl = document.getElementById('photo-film');
const locationEl = document.getElementById('photo-location');
const currentPosIndicator = document.getElementById('current-pos');
const maxPosIndicator = document.getElementById('max-pos');
@@ -49,6 +50,7 @@ const photoLinks = await Promise.all(
const swiper = new Swiper('.swiper', {
modules: [Navigation, Keyboard, EffectFade],
spaceBetween: 20,
effect: 'cards',
fadeEffect: {
crossFade: true
@@ -78,6 +80,9 @@ const photoLinks = await Promise.all(
if (cameraEl && currentPhoto) {
cameraEl.textContent = `📸 ${currentPhoto.camera}`;
}
if (filmEl && currentPhoto) {
filmEl.textContent = currentPhoto.film !== "" ? `🎞️ ${currentPhoto.film}` : "";
}
if (locationEl && currentPhoto) {
locationEl.textContent = `📌 ${currentPhoto.location}`;
}