-
Notifications
You must be signed in to change notification settings - Fork 0
/
static.html
61 lines (55 loc) · 1.27 KB
/
static.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Map</title>
<style type="text/css">
@keyframes ping {
75%,
100% {
transform: scale(2);
opacity: 0;
}
}
.dot {
animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
opacity: 0.75;
border-radius: 9999px;
width: 0.75rem;
height: 0.75rem;
display: inline-flex;
position: absolute;
background-color: #092340;
left: attr(data-x);
top: attr(data-y);
}
.container {
position: relative;
display: inline-flex;
width: 693px;
box-sizing: border-box;
transform: scale(0.5);
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
border: 1px solid black;
}
</style>
</head>
<body>
<div class="container">
<img src="globe.svg" width="693" />
<div class="dot" style="left: 221px; top: 247px"></div>
<div class="dot" style="left: 524px; top: 283px"></div>
<div class="dot" style="left: 522px; top: 370px"></div>
</div>
</body>
</html>