Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/67ed6403-8f1c-800e-a6f7-c427fa6d5b01
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== User: I will ask you to make some modifications to this code: === I will ask you to make some modifications to this code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>ππΊπΈπ₯</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Social Media Meta Tags --> <meta property="og:title" content="ππΊπΈπ₯"> <meta property="og:description" content="An interactive work featuring dynamic background transitions, radiating emoji, moving money emojis, and changing measures."> <meta property="og:image" content="us.png"> <meta property="og:url" content="http://example.com/"> <meta name="twitter:card" content="summary_large_image"> <!-- Artist Statement: "ππΊπΈπ₯" is a critique of the measures enacted by President Trump and his government that results in the massive loss of immigrants and citizens, impoverishing the U.S.A. through workforce, talent, and brain drain, while attracting and enriching oligarchs. Michael Waltz's now viral emoji trio "ππΊπΈπ₯" represents the attitude (and ineptitude) of Trump and his administration, as they do lasting damage to the country through measures meant to further their toxic agenda. Created by Leonardo Flores using Chat GPT 03-mini-high and 4.5 research on April 2, 2025. --> <style> /'' Fullscreen toggle and reload button container ''/ #buttonContainer { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 13; } /'' Buttons style: both white background, but reload button text is red ''/ #fullscreenButton, #reloadButton { background-color: white; color: black; border: none; border-radius: 5px; font-size: 2em; padding: 10px 20px; cursor: pointer; margin: 0 10px; } #reloadButton { color: red; } </style> <style> /'' Base styles and layering ''/ body { margin: 0; overflow: hidden; background-color: white; position: relative; } /'' Radiating emoji container (lowest layer) ''/ #emojiContainer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .emoji { position: absolute; left: 50vw; top: 50vh; transform: translate(-50%, -50%); animation: radiate linear forwards; } @keyframes radiate { from { transform: translate(-50%, -50%); } to { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))); } } /'' Image container (above radiating emoji but below text & money/clown) ''/ #imageContainer { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 70vw; z-index: 9; } .center-image { width: 100%; height: auto; display: block; } /'' Money emoji styling (dynamically spawned) ''/ .money { position: absolute; z-index: 10; font-size: 2em; transition: left 3s linear; } /'' Static clown emoji in center, same layer as money ''/ #centerClown { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(1); z-index: 10; font-size: 4em; pointer-events: none; } /'' Center text ''/ #centerText { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 11; width: 30vw; background-color: white; padding: 10px; color: black; font-size: 3em; font-weight: bold; text-align: center; pointer-events: none; opacity: 1; transition: opacity 1s ease-in-out; } /'' Top title ''/ #Title { position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 12; font-size: 4em; padding: 10px; } /'' Modal for Artist Statement ''/ #modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); z-index: 14; color: white; overflow: auto; } #modalContent { background-color: #002868; margin: 10% auto; padding: 20px; width: 80%; max-width: 600px; border-radius: 5px; font-size: 1.5em; } #modalClose { float: right; cursor: pointer; font-size: 1.5em; } /'' Responsive adjustments ''/ @media (max-width: 600px) { #centerText { width: 80vw; font-size: 5vw; } #imageContainer { width: 90vw; } #Title { font-size: 8vw; } #fullscreenButton, #reloadButton { font-size: 4vw; } } </style> </head> <body> <div id="emojiContainer"></div> <!-- Centered image container --> <div id="imageContainer"> <img src="us.png" alt="Center Image" class="center-image"> </div> <!-- Static clown emoji in center --> <div id="centerClown">π€‘</div> <div id="centerText"></div> <div id="Title">ππΊπΈπ₯</div> <!-- Buttons container --> <div id="buttonContainer"> <button id="fullscreenButton">β</button> <button id="reloadButton">β³</button> </div> <!-- Modal for Artist Statement --> <div id="modal"> <div id="modalContent"> <span id="modalClose">×</span> <h2>Artist Statement</h2> <p>"ππΊπΈπ₯" is a critique of the measures enacted by President Trump and his government that results in the massive loss of immigrants and citizens, impoverishing the U.S.A. through workforce, talent, and brain drain, while attracting and enriching oligarchs. Michael Waltz's now viral emoji trio "ππΊπΈπ₯" represents the attitude (and ineptitude) of Trump and his administration, as they do lasting damage to the country through measures meant to further their toxic agenda.<br><br> Created by Leonardo Flores using Chat GPT 03-mini-high and 4.5 research on April 2, 2025.</p> </div> </div> <script> // FULLSCREEN TOGGLE & MODAL LOGIC document.addEventListener('click', function(e) { if (e.target.closest('#modal') || e.target.closest('#buttonContainer')) return; if (!document.fullscreenElement) { document.documentElement.requestFullscreen().catch(err => { console.error(Error enabling fullscreen: ${err.message}); }); } else { document.exitFullscreen(); } }); document.getElementById("modalContent").addEventListener('click', function(e) { e.stopPropagation(); }); document.getElementById("fullscreenButton").addEventListener('click', function(e) { e.stopPropagation(); document.getElementById("modal").style.display = "block"; }); document.getElementById("modalClose").addEventListener('click', function() { document.getElementById("modal").style.display = "none"; }); document.getElementById("reloadButton").addEventListener('click', function(e) { e.stopPropagation(); location.reload(); }); // BACKGROUND TRANSITION // 90-second cycle: 0-30s: White β Red (#BF0A30), 30-60s: Red β Blue (#002868), 60-90s: Blue β White. const totalTransition = 90000; let backgroundCycleStart = Date.now(); let additionalSpawn = 0; function startBackgroundTransition() { backgroundCycleStart = Date.now(); const transitionInterval = setInterval(() => { let elapsed = Date.now() - backgroundCycleStart; let fraction = Math.min(elapsed / totalTransition, 1); let r, g, b; if (fraction < 1/3) { let f = fraction * 3; r = Math.round(255 - f * (255 - 191)); g = Math.round(255 - f * (255 - 10)); b = Math.round(255 - f * (255 - 48)); } else if (fraction < 2/3) { let f = (fraction - 1/3) * 3; r = Math.round(191 - f * (191 - 0)); g = Math.round(10 + f * (40 - 10)); b = Math.round(48 + f * (104 - 48)); } else { let f = (fraction - 2/3) * 3; r = Math.round(0 + f * (255 - 0)); g = Math.round(40 + f * (255 - 40)); b = Math.round(104 + f * (255 - 104)); } document.body.style.backgroundColor = rgb(${r}, ${g}, ${b}); if (fraction >= 1) { clearInterval(transitionInterval); additionalSpawn = 0; startBackgroundTransition(); } }, 100); } startBackgroundTransition(); // RADIATING EMOJI SPAWNING function spawnEmojis() { var container = document.getElementById("emojiContainer"); var count = (10 + additionalSpawn) + Math.floor(Math.random() * 6); for (var i = 0; i < count; i++) { container.appendChild(generateEmoji()); } additionalSpawn += 10 + Math.floor(Math.random() * 6); const nextDelay = 1000 + Math.random() * 2000; setTimeout(spawnEmojis, nextDelay); } setTimeout(spawnEmojis, 1000); function generateEmoji() { var emoji = document.createElement("span"); emoji.className = "emoji"; const emojis = [ "π ", "π’", "π€’", "π±", "π¨βπ¦°", "π¨π»βπ¦°", "π¨πΌβπ¦°", "π¨π½βπ¦°", "π¨πΎβπ¦°", "π¨πΏβπ¦°", "π¨βπ¦±", "π¨π»βπ¦±", "π¨πΌβπ¦±", "π¨π½βπ¦±", "π¨πΎβπ¦±", "π¨πΏβπ¦±", "π¨βπ¦³", "π¨π»βπ¦³", "π¨πΌβπ¦³", "π¨π½βπ¦³", "π¨πΎβπ¦³", "π¨πΏβπ¦³", "π¨βπ¦²", "π¨π»βπ¦²", "π¨πΌβπ¦²", "π¨π½βπ¦²", "π¨πΎβπ¦²", "π¨πΏβπ¦²", "π©βπ¦°", "π©π»βπ¦°", "π©πΌβπ¦°", "π©π½βπ¦°", "π©πΎβπ¦°", "π©πΏβπ¦°", "π©βπ¦±", "π©π»βπ¦±", "π©πΌβπ¦±", "π©π½βπ¦±", "π©πΎβπ¦±", "π©πΏβπ¦±", "π©βπ¦³", "π©π»βπ¦³", "π©πΌβπ¦³", "π©π½βπ¦³", "π©πΎβπ¦³", "π©πΏβπ¦³", "π©βπ¦²", "π©π»βπ¦²", "π©πΌβπ¦²", "π©π½βπ¦²", "π©πΎβπ¦²", "π©πΏβπ¦²", "π±ββοΈ", "π±π»ββοΈ", "π±πΌββοΈ", "π±π½ββοΈ", "π±πΎββοΈ", "π±πΏββοΈ", "π±ββοΈ", "π±π»ββοΈ", "π±πΌββοΈ", "π±π½ββοΈ", "π±πΎββοΈ", "π±πΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "π ββοΈ", "π π»ββοΈ", "π πΌββοΈ", "π π½ββοΈ", "π πΎββοΈ", "π πΏββοΈ", "π ββοΈ", "π π»ββοΈ", "π πΌββοΈ", "π π½ββοΈ", "π πΎββοΈ", "π πΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "πββοΈ", "ππ»ββοΈ", "ππΌββοΈ", "ππ½ββοΈ", "ππΎββοΈ", "ππΏββοΈ", "π€¦ββοΈ", "π€¦π»ββοΈ", "π€¦πΌββοΈ", "π€¦π½ββοΈ", "π€¦πΎββοΈ", "π€¦πΏββοΈ", "π€¦ββοΈ", "π€¦π»ββοΈ", "π€¦πΌββοΈ", "π€¦π½ββοΈ", "π€¦πΎββοΈ", "π€¦πΏββοΈ", "π€·ββοΈ", "π€·π»ββοΈ", "π€·πΌββοΈ", "π€·π½ββοΈ", "π€·πΎββοΈ", "π€·πΏββοΈ", "π€·ββοΈ", "π€·π»ββοΈ", "π€·πΌββοΈ", "π€·π½ββοΈ", "π€·πΎββοΈ", "π€·πΏββοΈ" ]; emoji.innerText = emojis[Math.floor(Math.random() * emojis.length)]; var size = 20 + Math.random() * 30; emoji.style.fontSize = size + "px"; var angle = Math.random() '' 2 '' Math.PI; var halfWidth = window.innerWidth / 2; var halfHeight = window.innerHeight / 2; var maxDistance = Math.sqrt(halfWidth ''' 2 + halfHeight ''' 2) * 1.2; var dx = Math.cos(angle) * maxDistance; var dy = Math.sin(angle) * maxDistance; emoji.style.setProperty('--dx', dx + "px"); emoji.style.setProperty('--dy', dy + "px"); var duration = 2 + Math.random() * 3; emoji.style.animationDuration = duration + "s"; emoji.addEventListener('animationend', () => { emoji.remove(); }); return emoji; } // CENTER TEXT (measures) changes with fade. const measures = [ "Declaration Of National Emergency And Executive Orders", "Enhanced Border Security", "Revival Of The \"Remain In Mexico\" Program", "Termination Of Birthright Citizenship", "Mass Deportations And Expanded Detention Facilities", "Designation Of Gangs As Terrorist Organizations", "Targeting Of Sanctuary Cities", "Implementation Of The Laken Riley Act", "Restriction Of Asylum Claims", "Use Of The Alien Enemies Act", "Zero Tolerance Policy", "Travel Ban On Certain Muslim-Majority Countries", "Reduction In Refugee Admissions", "Expansion Of The Public Charge Rule", "Restrictions On Daca And Tps", "Increased Ice Interior Raids And Detentions", "Termination Of Chain Migration", "Closed The U.S. Agency For International Development (USAID)", "Closed The Institute Of Museum And Library Services (IMLS)", "Closed The Department Of Education's Office Of English Language Acquisition", "Closed The Federal Mediation And Conciliation Service (FMCS)", "Closed The General Services Administration's Tech Unit 18F", "Closed The Consumer Financial Protection Bureau (CFPB)", "Closed Multiple Social Security Administration (SSA) Regional Offices", "Closed Department Of Health And Human Services (HHS) Regional Offices", "Closed 164 Department Of The Interior Offices Nationwide", "Closed The U.S. Institute Of Peace (USIP)", "Executive Order 14168 Defining Sex As Binary", "Executive Order 14183 Banning Transgender Individuals From Military Service", "Executive Order 14201 Prohibiting Transgender Women From Female Sports", "Rescission Of Transgender Student Protections", "Restrictions On Gender-Affirming Care Under The Affordable Care Act", "Removal Of Lgbtq+ Resources From Government Websites", "Promotion Of Sex Discrimination In Federal Employment", "Policy Changes Affecting Transgender Inmates", "International Travel Advisories For Transgender Individuals", "Redefinition Of Gender In Federal Policies", "Suspension Of Federal Research Grants To Universities", "Targeting Of Universities Over Alleged Discrimination", "Cancellation Of NIH Grants For HIV Research", "Deportation And Visa Revocations Of International Scholars", "Executive Orders Banning Funding For Dei, Gender Ideology, And Green Energy Projects", "Increased Scrutiny And Funding Cuts Tied To Political Expression", "Dismissal Of Scientists And Funding Cuts To Science Agencies", "Freezing Of State Department Programs Including The Fulbright Program", "Mass Deletions Of Open-Access Datasets And Research Materials", "Threats To Defund Major Universities" ]; function changeCenterText() { const textDiv = document.getElementById("centerText"); textDiv.style.opacity = "0"; setTimeout(() => { const randomText = measures[Math.floor(Math.random() * measures.length)]; textDiv.innerText = randomText; textDiv.style.opacity = "1"; }, 1000); const nextInterval = (8 + Math.random() '' 4) '' 1000; setTimeout(changeCenterText, nextInterval); } document.getElementById("centerText").innerText = measures[Math.floor(Math.random() * measures.length)]; const initialInterval = (8 + Math.random() '' 4) '' 1000; setTimeout(changeCenterText, initialInterval); // UTILITY: Continuously grow an element. function startGrowing(element) { element.dataset.scale = element.dataset.scale || 1; element.dataset.baseTransform = element.dataset.baseTransform || "translate(-50%, -50%)"; element.style.transform = element.dataset.baseTransform + " scale(" + element.dataset.scale + ")"; element.growInterval = setInterval(() => { let current = parseFloat(element.dataset.scale); current += 0.005; // Slower continuous growth. element.dataset.scale = current; element.style.transform = element.dataset.baseTransform + " scale(" + current + ")"; }, 100); } // MONEY EMOJI FUNCTIONALITY function spawnMoneyEmoji() { const tNow = Date.now() - backgroundCycleStart; const tRemain = totalTransition - tNow; if (tRemain < 3000) { scheduleNextMoney(); return; } const money = document.createElement("span"); money.className = "money"; money.innerText = "π€"; const side = Math.random() < 0.5 ? "left" : "right"; const fixedY = window.innerHeight / 2; let startX, stopX; const factor = 0.75 + Math.random() * 0.15; const centerX = window.innerWidth / 2; if (side === "left") { startX = -50; stopX = centerX * factor; } else { startX = window.innerWidth + 50; stopX = window.innerWidth - centerX * factor; } money.style.left = startX + "px"; money.style.top = fixedY + "px"; money.dataset.baseTransform = "translate(-50%, -50%)"; money.dataset.scale = 1; money.style.transform = money.dataset.baseTransform + " scale(1)"; money.style.zIndex = "10"; document.body.appendChild(money); money.style.transition = "left 3s linear"; requestAnimationFrame(() => { money.style.left = stopX + "px"; }); startGrowing(money); scheduleNextMoney(); } function scheduleNextMoney() { const delay = 20000 + Math.random() * 10000; // 20-30 seconds setTimeout(spawnMoneyEmoji, delay); } scheduleNextMoney(); // Start continuous growth for the static clown emoji. window.addEventListener('DOMContentLoaded', () => { const clown = document.getElementById("centerClown"); startGrowing(clown); }); </script> </body> </html>
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)