Global Trends Background

Discover Global Trends & Insights

Your go-to source for Technology, Finance, AI Tools, and Health & Lifestyle tips to stay ahead in 2026.

Explore Trends
`; contentFeed.appendChild(adDiv); } // 文章卡片优化(hover效果) const postImage = post.image || `https://source.unsplash.com/random/600x400/?${post.category}`; const postDiv = document.createElement('div'); postDiv.className = 'bg-white rounded-lg shadow-sm overflow-hidden card-hover border border-gray-100'; postDiv.innerHTML = ` ${post.title}
${post.category.charAt(0).toUpperCase() + post.category.slice(1).replace('-', ' ')}

${post.title}

${stripHtml(post.content).substring(0, 150)}...

`; contentFeed.appendChild(postDiv); }); if (endIndex >= posts.length) { loadMoreButton.style.display = 'none'; } } loadMoreButton.addEventListener('click', () => { currentPage++; renderPosts(currentPage); }); window.addEventListener('scroll', () => { if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 200 && loadMoreButton.style.display !== 'none') { currentPage++; renderPosts(currentPage); } }); function stripHtml(html) { const temp = document.createElement('div'); temp.innerHTML = html; return temp.textContent || temp.innerText || ''; }