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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Shout-Out Display</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700;1,900&family=Poppins:wght@600;700;800&display=swap" rel="stylesheet"> | |
| <style> |
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
| """ | |
| Floating Lyric Windows Animation (Permanent Stack Version) | |
| ------------------------------------------------------------ | |
| Every lyric line appears in its own popup window — all windows are | |
| exactly the same fixed size and font as the "Start" button window. | |
| Boxes never disappear or fade. Each new box spawns at a random safe | |
| X position near the bottom of the screen; as new boxes appear below, | |
| every existing box shifts upward smoothly, creating a continuous | |
| rising stack of lyric windows, synced to a song. |