Em breve
Um novo site WordPress está sendo criado e será publicado em breve
(function () {
function revealProducts() {
const cards = document.querySelectorAll('.woocommerce ul.products li.product');
if (!cards.length) return;
const observer = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add('ue-visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.08 });
cards.forEach(function (card) {
observer.observe(card);
});
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', revealProducts);
} else {
revealProducts();
}
})();