This commit is contained in:
Marc Beninca 2025-04-28 23:43:21 +02:00
parent 46c2197f5a
commit ef6b5a8ba3
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
3 changed files with 16 additions and 16 deletions

View file

@ -67,7 +67,7 @@
<tr> <tr>
<th scope="row"><a href="https://en.wikipedia.org/wiki/VCard#Properties">EMAIL</a></th> <th scope="row"><a href="https://en.wikipedia.org/wiki/VCard#Properties">EMAIL</a></th>
<th class="logo" scope="row"><img class="logo" src="../img/mail.svg" alt="Mail logo"></th> <th class="logo" scope="row"><img class="logo" src="../img/mail.svg" alt="Mail logo"></th>
<td><span id="ea"></span></td> <td><span id="qa"></span></td>
</tr> </tr>
</tbody></table> </tbody></table>
</section> </section>

View file

@ -67,7 +67,7 @@
<tr> <tr>
<th scope="row"><a href="https://fr.wikipedia.org/wiki/VCard#Propriétés">EMAIL</a></th> <th scope="row"><a href="https://fr.wikipedia.org/wiki/VCard#Propriétés">EMAIL</a></th>
<th class="logo" scope="row"><img class="logo" src="../img/mail.svg" alt="Logo de courrier"></th> <th class="logo" scope="row"><img class="logo" src="../img/mail.svg" alt="Logo de courrier"></th>
<td><span id="ea"></span></td> <td><span id="qa"></span></td>
</tr> </tr>
</tbody></table> </tbody></table>
</section> </section>

View file

@ -6,30 +6,30 @@ for (let button of buttons) {
}); });
} }
const ea = document.getElementById("ea"); const qa = document.getElementById("qa");
ea.style.cursor = atob("cG9pbnRlcg=="); qa.style.cursor = atob("cG9pbnRlcg==");
const ea0 = atob("Lg=="); const qa0 = atob("Lg==");
const ea1 = [ const qa1 = [
atob("Y3Y="), atob("Y3Y="),
].join(ea0); ].join(qa0);
const ea2 = document.createElement(atob("c3Bhbg==")); const qa2 = document.createElement(atob("c3Bhbg=="));
ea2.className = atob("ZmEgZmEtYXQ="); qa2.className = atob("ZmEgZmEtYXQ=");
const ea3 = [ const qa3 = [
atob("bWFyYw=="), atob("bWFyYw=="),
atob("YmVuaW5jYQ=="), atob("YmVuaW5jYQ=="),
atob("bGluaw=="), atob("bGluaw=="),
].join(ea0); ].join(qa0);
const ea4 = atob("IA==") const qa4 = atob("IA==")
for (let a of [ea1, ea4, ea2, ea4, ea3]) { for (let kg of [qa1, qa4, qa2, qa4, qa3]) {
ea.append(a); qa.append(kg);
} }
ea.addEventListener("click", () => { qa.addEventListener("click", () => {
//window.location.href = [ //window.location.href = [
alert([ alert([
atob("bWFpbHRv"), atob("bWFpbHRv"),
[ea1, ea3].join(atob("QA==")), [qa1, qa3].join(atob("QA==")),
].join(atob("Og==")) ); ].join(atob("Og==")) );
}); });