Skip to Navigation Skip to Posts Skip to Content

AI

21 posts

Portraits of Our Time

Featured Post TEAM tier Forums

Does Anyone Really Care About Music?

Dead Internet Theory

Need a Friend?

#710 | Is it time we broke up with nostalgia?

Artificial Intelligence is Now Capable of Writing Novels

The Superhero of Artificial Intelligence: Can This Genius Keep It in Check?

Apprentice Work: What is the Potential of Machine Art, and Can it Truly Be Described as Creative or Imaginative?

Will Machines Eliminate Us?

Load More You've reached the end of the list

Want to go deeper?

Unlock 25+ years of cultural intelligence and get access to all our SEEDS, FORUMS, REPORTS & BRIEFINGS.

Become a MEMBER from £7/month
// Add an event listener for the scroll event on the window. window.addEventListener("scroll", () => { // Get the current scroll position. let scrollTop = window.scrollY; // Get the total height of the document. let docHeight = document.body.offsetHeight; // Get the height of the window. let winHeight = window.innerHeight; // Calculate the percentage of the page that has been scrolled. let scrollPercent = scrollTop / (docHeight - winHeight); let scrollPercentRounded = Math.round(scrollPercent * 100); // Try to open the popup if the visitor has scrolled more than 25% of the page and is not a member. if (scrollPercentRounded > 25) { openPopup(); } });