This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const maxButtons = 100; // Its weird going too far back | |
| let delay = 50; // ms delay between clicks | |
| var buttonsToBeClicked = 0; | |
| const poppy = function() { | |
| const popup = document.createElement("div"); | |
| popup.innerHTML = ` | |
| <div style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center;"> | |
| <div style="background: white; padding: 20px; border-radius: 5px; text-align: center;"> | |
| <h2 style="margin: 0 0 10px;">The Kudoz Machina</h2> |