Do a Barrel Roll Twice: Google Secret Commands & elgooG Tricks
Want to learn how Do a Barrel Roll Twice actually works? You’ve reached the perfect place. You might think that this can be done in a very complicated manner. But with the right guidance, you can effortlessly do it. However, if you normally type the phrase “Do a Barrel Roll” on your search engine, Google search will automatically spin with CSS or CSS3 animation. So, to rotate your screen multiple times by 360 degrees, you need to use a third-party website, elgooG, or the “z” or “r” twice as search operators. I have already used this site, and now let me tell you how this will help you out.
This guide will describe what will actually work and tips to avoid common mistakes that I made during the trial-and-error process myself.
Quick Notes!
- Launch Date: Google’s original “Do a Barrel Roll” Easter egg launched on November 9, 2011; elgooG offers an enhanced version with multiple spins.
- Customizable Preset Options: There are various presets, such as 2, 5.6, 20, and many more.
- Similar User Experience: Users will get an experience just like Google’s Easter Egg in 360 degrees.
- Advanced Technology Used: It uses CSS transformations and animations to manage the sequence of spinning multiple times and at customized angles smoothly.
- Main Purpose: This Easter Egg is designed for demos, quick experiments, or to chill your mood.
- Based on: It is inspired by Star Fox 64 (1997), where players said the command, “Do a Barrel Roll.”
What is the “Do a Barrel Roll” Google Easter Egg?
In 2011, a Google software engineer released an Easter Egg and named it Do a Barrel Roll. It has become famous among the audience, as it is a functional search trick. Users just need to type this phrase into the Google search bar. After that, the result page will automatically move in 360 degrees. Not only that, the developer has a prime motive behind the release, which is to demonstrate CSS or advanced CSS3 animations’ capabilities. So it can give users a smooth and visually appealing interactive experience.
Here are other synonyms or related Easter Eggs as listed below:
- Google Barrel Roll
- “Do a barrel roll” trick
- “Z or r twice” trick
When you use this hidden feature, Google allows you to rotate your screen once, and you can easily click on the page in the middle of the animation.
Besides this, if you want to have more fun, consider doing a Barrel Roll Twice. It means that you just need to visit the third-party site, elgooG, and spin your search result page more than once.
Difference Between Do a Barrel Roll vs Do a Barrel Roll Twice
Check out the following table to know why twice as many users have experimented. In addition, know about what the difference is between Google’s Easter Egg and this extended version.
| Technical Specification | Google’s Easter Egg: Do a Barrel Roll | Do a Barrel Roll Twice |
| Origin | It was introduced by Google in 2011 as a playful Hidden feature. Additionally, it is inspired by the Star Fox video game command. | It is an extended version of the original Google Easter Egg that allows users to spin more than one spin. |
| Trigger Command | You need to type “do a barrel roll” in Google Search | You need to use the enhanced version by visiting the third-party site, elgooG. |
| Effect | The search result page spins 360 degrees once by using CSS animation. | The page rotates 360 degrees every time. Also, it creates a more seamless visual effect. |
| User Experience | Quick and lighthearted surprise that lasts only for a moment. Furthermore, there is minimal disruption while using it. | There is a longer animation that is more entertaining and noticeable. Plus, it is still disruptive. |
| Technical Basis | It is designed with CSS animations and transforms within the Google Search interface. | It is also built with the same technology but uses advanced CSS3. In addition, it is looped or extended to execute multiple spins. |
| Cultural Impact | It became one of Google’s most iconic Easter eggs. | It became famous among fans and is used to demonstrate the flexibility of Google’s hidden feature. Plus, it inspires creative experiments, such as 5.6x, 20x, etc. |
| Availability | It is active on Google Search. | This is not an official part of Google Search but is still accessible on third-party sites, such as elgooG. |
Key Notes!
- Do a Barrel Roll showcases Google’s playful side, as it is one of the hidden features. Plus, it is designed to surprise users by playing a single spin on the search result page.
- Do a Barrel Roll is an extended and enhanced version of the original Easter egg. It is designed for users who want more spins for extra amusement.
- While based on the same concept, the ‘Twice’ version is an unofficial, extended loop of Google’s original 360-degree animation.
Why “Do a Barrel Roll Twice” Became Famous
Various factors make Do a Barrel Roll Twice famous.
- A single rotation was already unexpected, but twice makes it more playable and amplifies the fun.
- Users are enjoying experimenting with multiple variations, such as 5.6x and 20x, which makes it a customizable experience.
- Twice variant is the Goldilocks version. It means that it is more engaging than the original one.
- When users explored the twice variant, it quickly spread on Reddit, Twitter, and Quora.
- In addition, it has become a gateway to discover more hidden variations, such as 5.6x, 20x, or even 100x.
- The third-party site has enhanced and extended Do a Barrel Roll, and this site allows users to trigger variations of spin.
Why Twice Stands Out Compared to Other Variations
Go through this table.
| Version | Experience | Why It Became Popular |
| Once | Quick, subtle delight | Original surprise, but short-lived |
| Twice | More dramatic, still usable | Balanced fun and nostalgia (Star Fox reference) |
| 5.6x+ | Overwhelming, impractical | Funny, functional, and more of a trick |
| 1 Million | Purely absurd | Viral joke, but not widely used |
How to Do a Barrel Roll Twice: Step-by-Step
Go through the listed walkarounds.
Method 1: The “Z or R Twice” Search Command
- Go to Google.com.
- Type Z or R Twice in the search bar.
- Now, you will be able to see that your screen is rotating twice.
Method 2: Using the elgooG Mirror for Multiple Spins
- Navigate https://elgoog.im/doabarrelroll/.
- Click the “twice” option (or desired rotations like 20, 100, A Million Times) from the top screen
- Now, your screen will rotate the specified number of times instantly.
Method 3: Customizing the Number of Rolls (5.6, 20, or 100 Times)
- Visit elgoog.im.
- Browse Do a Barrel Roll.
- Now, choose whether you want to spin your screen for 5.6, 20, or 100 times.
- Wait till your screen rotation has finished.
How the Barrel Roll Twice Page Actually Spins
Do a Barrel Roll leverages CSS3 animations via the transform property so that the entire search result page can spin at 360 degrees. Also, it is triggered when a user searches for a query, z or r twice.
In addition, JavaScript adds a certain CSS class to the page body to start the rotation. You see the spinning effect because of the core features of CSS3 that specifically use the transform: rotate() property and @keyframes rules to define the animation.
Here’s the breakdown of the page on how it actually spins:
- @keyframes Rule: The sequence of the animation is defined with the @keyframes rule or @-webkit-keyframes rule (older WebKit browsers). It highlights the starting and ending points of the animation. If we talk about this rule in Do a Barrel Roll, keyframes are specified here as 0 degrees (initial rotation) to 360 degrees (final rotation).
CSS
/* The magic behind the 2x spin */
.spin-twice {
animation: barrelRoll 2s ease-in-out;
animation-iteration-count: 2;
}
@keyframes barrelRoll {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
- transform: rotate() Property: Within @keyframes, there is a transform property that serves as the rotate() function. According to the Mozilla Developer Network (MDN) guide on transform: rotate(), developers tell the browser to apply a 2D rotation to the element. Moreover, when the animation reaches its end, the value rotate(1turn) or rotate(360°) is applied.
-
- animation-duration: It highlights the time duration of how long the animation takes typically 1-2 seconds for a smooth single cycle.
- animation-iteration-count: It determines how many times the animation plays. In Do a Barrel Roll, it is set to rotate one time.
- transition Property (Implicit): It offers smoothness and reversal animation so that if the user continues to spin the web page repeatedly, there are no jerky jumps.
Does It Work on Chrome, Safari, and Firefox?
YES! elgooG’s enhanced “Do a Barrel Roll Twice” (third-party mirror) works on modern browsers like Chrome, Safari, and Firefox in 2026, supporting 2x, 5x, 20x, or 1M spins via custom inputs.
The rotation effect uses CSS3 animations that work on almost all web browsers, including Google AI mode. You just need to open your chosen web browser. After that, go to elgoog.im. Then, look for Do a Barrel Roll. Now, choose the preferred option for how many times you want to rotate your search page results. It can easily spin twice, 5.6, 20, or even 1 million times.
Note: If you find difficulties rotating your screen, make sure that there are no extensions that are blocking CSS.
Why Isn’t My Google Doing a Barrel Roll Twice?
Here are the following reasons why Google doesn’t allow double spin.
- Google’s native Easter egg performs one 360° rotation per search. For continuous or multiple spins, use third-party sites like elgooG.im
- Also, if you want to have more than one spin, Google will not be able to do this. You need to navigate to the {Link: elgooG.im https://elgoog.im/doabarrelroll/} or a similar website.
- Otherwise, if you still want to experience the search engine twice, you can simply search for z or r twice. You will get two rotations simultaneously.
Mobile vs. Desktop: Differences in Execution
Let’s see the difference in execution on mobile and desktop devices.
- Input Method: Users who are using a desktop render the animation through the browser’s GPU. On the other hand, mobile users may experience slight frame-rate drops during the spinning.
- Rendering and Performance: For desktop users, CSS animation will effectively render on the basis of their browser engine. Meanwhile, mobile users may have to handle their battery, which results in a different functional experience.
- Interaction Context: Mobile device users just need to move to direct URL navigation to certain websites that are designed to execute the action. On the other hand, desktop users are required to use the Google search engine result page. (SERP).
- Screen Orientation: On mobile devices, users will get in portrait mode, and they can adjust the spinning speed by tapping on the little bar with their thumb. Plus, they might be able to check that the visual effect is properly visible. On the other hand, desktop users will get a landscape screen.
How Did Star Fox 64 Inspire “Do a Barrel Roll?”
This Google Easter Egg was mainly designed due to the classic 1997 Nintendo 64 video game Star Fox 64. In the game, players execute a barrel roll just by double-tapping on the Z and R buttons to save the ship from the enemy lasers. Star Fox 64 was released on June 30, 1997 (Japan) / July 1, 1997 (NA).
There was a character named Peppy Hare, voiced by Rick May, who gave the order to you to do a barrel roll.
However, it is a catchphrase that is used to call someone to execute a 360-degree horizontal rotation, as per Know Your Meme.
Before it was a Google feature, this phrase was used when someone wanted to caption their images, especially when the subject was in animated GIFs or mid-rotation. In addition, it became a famous internet meme on 4chan in the mid-2000s.
Why Did Google Create the Barrel Roll?
There are two reasons behind designing Google’s hidden Easter egg.
- To Entertain Users: A software engineer at Google has designed it as one of the playful Easter eggs. As a result, it can easily offer a moment of surprises and fun for its users.
- To Highlight Web Power: It plays a vital role, as here, there is a presentation of CSS capabilities. Also, it is specifically designed for modern web browsers that can easily handle 3D animations and transformations without the requirement of extra plugins.
Related Google Search Easter Eggs and Interactive Features
Let’s see some of the related Google Search Easter Eggs that you should know.
| Feature or an Easter Egg | How to Trigger | Interaction/Effect | Year Introduced | Notes |
| Askew/Tilt | You just need to type “Askew/Tilt” in the Google Search bar. | Page will tilt slightly. | 2011 | Subtle, visual gag |
| Zerg Rush | In the Google Search bar, type down zerg rush. | O characters will trigger the results. Otherwise, it will eat your search result, and all the texts as well as links will disappear. | 2012 | Originated from StarCraft. |
| Google Gravity | Search Google Gravity through a third-party site, elgooG. | Page elements will fall down. | Unofficial, as it is from elgooG. |
|
| Pac-Man Doodle | You just need to search Google for Pac-Man. | This is a playable Pac-Man game. | 2010 | It is the first interactive Google Doodle and celebrated Pac-Man’s 30th anniversary |
| Thanos Snap | Search for Thanos, you need to tap on the gauntlet icon. | Results disintegrate | 2019, but it was removed by Google in 2020. However, it uses HTML5 Canvas. Even though you can still access it through a third-party site, such as elgooG. | It is tied to Avengers: Endgame. |
| Cricket Game | Search for ICC Men’s T20 World Cup | Play the cricket mini-game. | 2017 | Its niche is visually appealing in comparison to baseball-themed doodles. |
Key Notes!
- Zerg Rush and Askew are some Google Easter eggs that are directly available in Google search.
- Moreover, other hidden features are there that can only be accessed from elgooG or other third-party websites.
Frequently Asked Questions
This section covers all the commonly asked queries that are collected by our experts.
Q1. Who created the “Do a barrel roll” Easter egg?
Ans. The “Do a barrel roll” Easter Egg was developed by a Google engineer. He has the prime motive to showcase the usage of advanced CSS3 technology on modern web browsers.
Q2. What happens if you type “do a barrel roll” in Google?
Ans. When you type “do a barrel roll” in Google, you will see that your screen is spinning at 360 degrees.
Q3. Can I make Google “Do a Barrel Roll” multiple times?
Ans. YES! It is possible for you to spin your Google multiple times after typing “Do a Barrel Roll” by using a third-party site, such as elgooG. When you use this, you can easily execute consecutive spins, whether it is for 2, 5.6, 20, or even more than 100.
Q4. Where did a barrel roll come from?
Ans. This Barrel Roll evolved from the classic 1997 Nintendo 64 video game Star Fox 64.
Q5. Do a barrel roll in 1000000 times?
Ans. If you are willing to rotate or perform “Do a barrel roll” in 1000000 times, I recommend you should opt for customized web tools, such as elgooG. Note! If you do many rotations in a row, it can lag your browser because of high CPU usage.
Q6. What is “z” or “r” twice?
Ans. If you type “z or r twice” on the search engine, it will act just like a Do a Barrel Roll Twice. It means that your search result screen will spin 360 degrees every time.
Q7. What are the risks of doing a barrel roll?
Ans. Users can face some minor technical issues if they do a fast, spinning animation. Or, they can also experience the loading speed being slow due to the page rendering.
Q8. Is there any need to download or pay for a subscription to use Google’s barrel roll easter egg?
Ans. NO! You don’t need to get a subscription or download it from any store. However, this do a barrel roll is designed for the web only.
Q9. How to Fix Lag During 100x or 1M Spins?
Ans. To fix, follow these instructions on Chrome/Edge
- Head to Settings and then System.
- Enable “Use graphics acceleration when available.”
- Restart your preferred browser.
It lets your GPU control the CSS3 animation. As a result, it makes even 100 spins look seamless.
Final Recommendation!
If you are in a dilemma about whether you should use Google’s Easter Do a Barrel Roll Twice or not. Let me clarify one thing that standard hidden feature will only allow you to rotate your screen for only one time for your search keyword. But if you still want to spin your search results page, you need to opt for the “z” or “r” twice trick. Otherwise, you can also visit the third-party site, elgooG. So, it totally depends on you which method you opt for. But make sure that you are picking the appropriate one and the best one that fits you.