Rassegna I Contemporanei

La Rassegna dal 7 al 12 febbraio al teatro Marconi ha visto tra l’altro la presenza eccezionale di Andreas Flourakis autore di LE COSE CHE PORTO CON ME ospite in sala per l’occasione

Il 10 dicembre all’interno della Rassegna I Contemporanei, organizzata dalla nostra Associazione al Teatro Marconi di Roma, abbiamo avuto il piacere e l’onore di avere con noi ospite in sala per l’occasione il drammaturgo Andreas Flourakis, autore di LE COSE CHE PORTO CON ME. Il testo – inedito in Italia – è stato tradotto per noi da Gilda Tentorio. Pubblichiamo con piacere alcune immagini e ricordi della serata .

 

 

 

Qui invece – per la Rivista Quindicinale IL PALCO – la bella intervista con Stefano Coccia 

.gallery-carousel { position: relative; max-width: 1000px; margin: 2rem auto; overflow: hidden; border-radius: 8px; background: #000; } /* Altezza stabile e no distorsioni */ .gallery-track { display: flex; transition: transform 0.5s ease; touch-action: pan-y; } .slide { min-width: 100%; box-sizing: border-box; aspect-ratio: 16 / 9; /* cambia qui se vuoi 4/3, 3/2, ecc. */ display: grid; place-items: center; background: #000; } .slide img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; /* niente stiramenti */ display: block; } .gallery-button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.6); border: none; font-size: 2rem; padding: 0.3rem 0.6rem; border-radius: 50%; cursor: pointer; z-index: 2; transition: background .3s ease; } .gallery-button:hover { background: rgba(255,255,255,0.85); } .gallery-button.prev { left: 10px; } .gallery-button.next { right: 10px; } @media (max-width: 600px) { .gallery-carousel { border-radius: 6px; } .gallery-button { font-size: 1.5rem; padding: 0.2rem 0.4rem; } } (function(){ const carousel = document.getElementById(‘galleryCarousel2’); const track = carousel.querySelector(‘.gallery-track’); const slides = Array.from(track.children); const prev = carousel.querySelector(‘.gallery-button.prev’); const next = carousel.querySelector(‘.gallery-button.next’); let index = 0, startX = 0, currentX = 0, isDragging = false; function update(){ track.style.transform = `translateX(-${index * 100}%)`; } prev.addEventListener(‘click’, () => { index = (index – 1 + slides.length) % slides.length; update(); }); next.addEventListener(‘click’, () => { index = (index + 1) % slides.length; update(); }); // Swipe touch track.addEventListener(‘touchstart’, e => { startX = e.touches[0].clientX; isDragging = true; }, {passive:true}); track.addEventListener(‘touchmove’, e => { if(isDragging) currentX = e.touches[0].clientX; }, {passive:true}); track.addEventListener(‘touchend’, () => { if(!isDragging) return; const delta = startX – currentX; if (delta > 50) next.click(); else if (delta { if (e.key === ‘ArrowLeft’) prev.click(); else if (e.key === ‘ArrowRight’) next.click(); }); })();

Torna in alto