In a world where the self has long been the centre of gravity, are we witnessing a shift towards a new era — a post-individualistic age?
From the rise of collective movements to the reimagining of community structures to fandoms becoming a pervasive and powerful force in culture, there are growing signs that the age of hyper-individualism may be giving way to something new. But post-individualism isn't a simple case of neo-collectivism.
While the internet allows us to embody multiple digital selves, challenging traditional notions of individual identity, it's also fuelling a loneliness epidemic and a friendship recession. We're more connected to our many selves than to each other. So what does a post-individualistic age look like? And how can brands navigate this new reality?
// 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();
}
});