
Mosquée Bleue: Splendeur Ottomane
Un chef-d'œuvre architectural au cœur d'Istanbul.
Mosquée Bleue: Splendeur Ottomane
Un chef-d'œuvre architectural au cœur d'Istanbul.
Visitez la Mosquée Bleue (Sultanahmet Camii) et admirez sa magnifique architecture ottomane.
Chargement des voyages
Avis voyageurs sur Îles des Princes
Paroles de Voyageurs YANIS
50) { // Minimum swipe distance threshold
if (touchMoveX < 0 && currentPage < pages - 1) {
currentPage++; // Swipe left
} else if (touchMoveX > 0 && currentPage > 0) {
currentPage--; // Swipe right
} else if (touchMoveX < 0 && currentPage === pages - 1) {
// Optional: Loop back to start on swipe left at the end
// currentPage = 0;
} else if (touchMoveX > 0 && currentPage === 0) {
// Optional: Loop back to end on swipe right at the beginning
// currentPage = pages - 1;
}
}
// Reset touch tracking
touchStartX = 0;
touchMoveX = 0;
">