For those who haven’t seen it, "Google Gravity Tornado" sounds like a disaster movie about a weather event that sucks up your search history. In reality, it’s one of the most creative user-generated hacks built on top of Google’s original gravity experiment. This article dives deep into what Google Gravity Tornado is, how it works, who created it, and—most importantly—how you can trigger it yourself. Before we can understand the tornado, we have to understand the gravity. The original Google Gravity was created by a developer named Mr.doob (real name: Ricardo Cabello), a renowned Spanish programmer and Three.js wizard. In 2009, Mr.doob created a proof-of-concept using JavaScript and the Google API that manipulated the Document Object Model (DOM) of Google’s homepage.
In the real Google Gravity Tornado, this function runs on every UI element 60 times per second, creating the swirling illusion. In short: Absolutely. It takes five seconds to load, costs nothing, requires no installation, and provides a genuine moment of digital wonder. In a world of algorithmic feeds and dark patterns, the Google Gravity Tornado is a reminder that the web can still be weird, whimsical, and useless in the best possible way. google gravity tornado
// Pseudo-code for a tornado force function applyTornadoForce(element, centerX, centerY, strength) let dx = element.x - centerX; let dy = element.y - centerY; let distance = Math.sqrt(dx*dx + dy*dy); // Radial force (pulls inward) let radialForceX = -dx / distance * strength; let radialForceY = -dy / distance * strength; For those who haven’t seen it, "Google Gravity
For millennials and Gen Z, discovering Google Gravity during a computer lab session was a rite of passage. The tornado version amplified that chaos. It gave users a sense of breaking something without actually breaking it. You could watch the search engine—a symbol of cold, efficient technology—spin into a digital hurricane, and for a few seconds, you weren't a user. You were a . Before we can understand the tornado, we have
Here’s what happened: When you visited Mr.doob’s experimental page, the Google logo, search bar, buttons, and even the "I’m Feeling Lucky" option would suddenly obey the laws of physics. They’d come crashing down to the bottom of the screen, bouncing and stacking on top of each other like debris. You could even pick up the search bar with your mouse cursor and toss it around the screen. It was mesmerizing, pointless, and absolutely brilliant.
Disclaimer: Google Gravity Tornado is not affiliated with, endorsed by, or maintained by Google LLC or Alphabet Inc. Use third-party experiment sites at your own discretion.
// Tangential force (creates spin) let tangentialForceX = -dy / distance * strength * 0.5; let tangentialForceY = dx / distance * strength * 0.5;