Hiển thị 1–21 của 69 kết quả

function showPostItems() { const postItems = document.querySelectorAll('.post-item'); postItems.forEach((item, index) => { setTimeout(() => { item.style.visibility = 'visible'; item.style.opacity = '1'; item.setAttribute('data-animated', 'true'); }, index * 200); }); } document.addEventListener('DOMContentLoaded', showPostItems);