Logo Pastebin.fr
Pastebin

Retrouvez, créez et partagez vos snippets en temps réel.

javascript8

// === CARACTÈRE À AFFICHER ===
const CARACTERE = "★"; // <-- change ce caractère ici

// Style de base (modifiable)
const style = {
  color: "red",
  fontSize: "24px",
  position: "absolute",
  pointerEvents: "none", // pour ne pas bloquer les clics
  userSelect: "none"
};

document.addEventListener("click", (e) => {
  const span = document.createElement("span");
  span.textContent = CARACTERE;

  Object.assign(span.style, style);

  span.style.left = e.pageX + "px";
  span.style.top = e.pageY + "px";

  document.body.appendChild(span);
});

Créé il y a 2 semaines.

Rechercher un Pastebin

Aucun paste trouvé.