/* Sara Palma — Reveal on scroll */ (function () { 'use strict'; var observer = new IntersectionObserver(function (entries) { entries.forEach(function (entry) { if (entry.isIntersecting) { entry.target.classList.add('in'); observer.unobserve(entry.target); } }); }, { threshold: 0.15 }); document.querySelectorAll('.fade-in').forEach(function (el) { observer.observe(el); }); /* Staggered hero role lines */ document.querySelectorAll('.role-line').forEach(function (el, i) { el.style.transitionDelay = (i * 90) + 'ms'; }); }());

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Una risposta

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *