-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (57 loc) · 2.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="magi coin on sol">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>magi.ink</title>
<link rel="stylesheet" href="/css/grape_juice.css">
<link rel="icon" href="/svg/magi.svg">
</head>
<body>
<div class="container">
<a href="https://jup.ag/swap/AZ1akwQWtMEJEhhon21AFjhQYSLtJnuYpBxBZT6QuKR3-SOL" id="name">$magi</a>
<div id="magi">
<div class="card-container">
<img src="/svg/charlotte_1.svg" alt="charlotte1" class="hand-drawn-1">
<img src="/svg/charlotte_2.svg" alt="charlotte2" class="hand-drawn-2">
</div>
</div>
<ul class="tag-list">
<li class="tag">
<a href="https://twitter.com/magi_on_sol">twt</a>
</li>
<li class="tag">
<a href="https://t.me/magionsol">telegram</a>
</li>
<li class="tag">
<a href="https://www.pump.fun/AZ1akwQWtMEJEhhon21AFjhQYSLtJnuYpBxBZT6QuKR3">pump.fun</a>
</li>
<li class="tag">
<a href="https://jup.ag/swap/AZ1akwQWtMEJEhhon21AFjhQYSLtJnuYpBxBZT6QuKR3-SOL">ca: AZ1akwQWtMEJEhhon21AFjhQYSLtJnuYpBxBZT6QuKR3</a>
</li>
</ul>
</div>
<script defer>
let _name = document.querySelector("#name");
_name.addEventListener("mouseover",
() => {
_name.textContent = "on sol";
});
_name.addEventListener("mouseout",
() => {
_name.textContent = "$magi";
});
// adds hover effect for social icons
navbar_items.forEach((social, i) => {
social.addEventListener("mouseover", () => {
navbar_names[i].style.visibility = "visible";
});
social.addEventListener("mouseout", () =>{
navbar_names[i].style.visibility = "hidden";
});
});
</script>
</body>
</html>