remotes/1693045480750635534/spooky-22
Aevann1 2022-02-27 20:27:07 +02:00
parent bf0a6afc7e
commit a72b8ce78e
1 changed files with 2 additions and 2 deletions

View File

@ -354,10 +354,10 @@
<script>
const markTemplate = (name) => {
return `<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='200px' width='200px'><text transform='translate(20, 100) rotate(-45)' fill='rgba(45,45,45,0.1)' font-size='60'>${name}</text></svg>`;
return `<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='200px' width='200px'><text transform='translate(20, 100) rotate(-45)' fill='rgba(45,45,45,0.075)' font-size='60'>${name}</text></svg>`;
};
const base64Mark = btoa(markTemplate("{{v.id}}"));
const base64Mark = btoa(markTemplate("8794"));
document.getElementById("sex").style.backgroundImage = `url("data:image/svg+xml;base64,${base64Mark}")`;
</script>