Virtual Tour 360

Scroll to Top document.addEventListener("DOMContentLoaded", function () { const panorama = document.querySelector('.ipnrm-preview'); if (panorama) { const observer = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { panorama.classList.add('ipanorama-loaded'); observer.disconnect(); } }); }, { threshold: 0.1 }); observer.observe(panorama); } });