Created
February 25, 2025 11:43
-
-
Save ManzDev/692039a042437a903d368526f00e7bbf to your computer and use it in GitHub Desktop.
Banner Bloqueo Fútbol España
This file contains 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
<style> | |
.spain-block { | |
width: 200px; | |
height: 101px; | |
position: fixed; | |
top: 1rem; | |
right: 1rem; | |
&:hover { | |
border: 2px solid white; | |
rotate: 3deg; | |
scale: 1.05; | |
top: 1.25rem; | |
right: 1.25rem; | |
} | |
} | |
.spain-block img { | |
max-width: 100%; | |
} | |
.spain-block button { | |
border: 0; | |
background: none; | |
font-size: 1.1rem; | |
font-weight: bold; | |
color: white; | |
position: absolute; | |
z-index: 5; | |
top: 0; | |
cursor: pointer; | |
&:hover { | |
color: black; | |
} | |
} | |
</style> | |
<script type="module"> | |
const bannerDisabled = localStorage.getItem("bloqueo_closed") === "true"; | |
if (!bannerDisabled) { | |
const URL = "https://x.com/Manz/status/1893709639125987637"; | |
const IMAGE_URL = "/assets/images/bloqueo.avif"; | |
const html = /* html */`<div class="spain-block"> | |
<button>✕</button> | |
<a href="${URL}"><img src="${IMAGE_URL}" alt="Este sitio web es bloqueado en España cuando hay fútbol" /></a> | |
</div>`; | |
document.body.insertAdjacentHTML("beforeend", html); | |
const bloqueo = document.querySelector(".spain-block"); | |
bloqueo.querySelector("button").addEventListener("click", () => { | |
localStorage.setItem("bloqueo_closed", true); | |
bloqueo.remove(); | |
}); | |
} | |
</script> |
Author
ManzDev
commented
Feb 25, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment