Skip to Navigation Skip to Posts Skip to Content

Sarah Wilkinson

19 posts

Sarah Wilkinson
Previous Posts

Jammer Coat

Mixed Reality Living Spaces

Soulfill

Place Lamp

Boom Boom

Google Time Machine

S.E.L.F.I.E

Climate Change Couture

BitTag

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(); } });