top of page
家
New Page
New Page
关于我们
公寓
预订住宿
我们周围
联系我们
隐私政策
DSAR 表格
Cookie 政策
宾客区
数字指南
New Page
数字指南
数字指南
数字指南
数字指南
数字指南
数字指南
数字指南
数字指南
数字指南
数字指南
New Page
New Page
Untitled
Untitled
Untitled
Untitled
Your stay
Untitled
Guida dell'appartamento
Mappe
Informazioni essentiali
Untitled
Audio guides
In che zona ci troviamo
Cucina locale
Untitled
Fuori casa
Giubileo 2025
Vita diurna e notturna
Monumenti intorno a te
Subscribe
Install this guide as an app!Tap your browser menu and select “Add to Home screen
How can we do better next time?
Normal Text
Title
Subtitle
Normal Text
Any image or videos?
Upload Images
audio
Upload Audios
获取独家优惠
Enter Your Email
Subscribe Now
Stay Updated
bottom of page
document.addEventListener("DOMContentLoaded", function () { let searchBox = document.getElementById('searchBox'); searchBox.addEventListener('keyup', function () { let input = searchBox.value.toLowerCase(); let sections = document.querySelectorAll('.guide-section'); sections.forEach(section => { let text = section.innerText.toLowerCase(); if (text.includes(input)) { section.style.display = "block"; // Show matching sections } else { section.style.display = "none"; // Hide non-matching sections } }); }); }); document.addEventListener("DOMContentLoaded", () => { // Apri e chiudi il menu const menuItems = document.querySelectorAll(".menu-item"); menuItems.forEach(item => { item.querySelector(".menu-item-header").addEventListener("click", () => { menuItems.forEach(i => { if (i !== item) i.classList.remove("active"); }); item.classList.toggle("active"); }); }); // Funzione di ricerca nel menu const searchBox = document.getElementById("searchBox"); if (searchBox) { searchBox.addEventListener("keyup", function () { let input = this.value.toLowerCase(); let menuItems = document.querySelectorAll(".menu-item"); menuItems.forEach(item => { let title = item.querySelector(".menu-item-header span").innerText.toLowerCase(); let content = item.querySelector(".menu-item-content").innerText.toLowerCase(); if (title.includes(input) || content.includes(input)) { item.style.display = "block"; } else { item.style.display = "none"; } }); }); } });