-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (71 loc) · 2.19 KB
/
about.html
File metadata and controls
77 lines (71 loc) · 2.19 KB
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
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #895151;
margin: 0;
padding: 100px;
box-sizing: border-box;
}
.coin-container {
width: 100px;
height: 100px;
perspective: 1000px;
}
.coin {
width: 100px;
height: 100px;
/* background: #000; */
position: relative;
transition: 1s all ease-in-out;
/* animation: left 5s .5s alternate ease-in-out; */
/* animation: name duration timing-function delay iteration-count direction fill-mode; */
}
.coin::before {
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
background-image: url("https://imgs.search.brave.com/2QA5dWO1FSV9KmNp7TA8g45yyknJcAneVuprXJgmDRE/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9wbmcu/cG5ndHJlZS5jb20v/cG5nLWNsaXBhcnQv/MjAyMjAyMjIvb3Vy/bWlkL3BuZ3RyZWUt/Z29sZGVuLWRvbGxh/ci11cy1jb2luLXBu/Zy1mcmVlLWRvd25s/b2FkLXBuZy1pbWFn/ZV80NDQ5MTkwLnBu/Zw");
background-size: cover;
position: absolute;
top: 10px;
/* animation: 0.5s linear 1s infinite alternate flip; */
animation: flip-rotate .7s ease-in-out 1s infinite alternate ;
animation: name duration timing-function delay iteration-count direction fill-mode;
/* animation: flip 1s linear 1s infinite alternate ease-in-out; */
}
@keyframes flip-rotate {
0% {
transform: translate(-10px, 10px) rotateY(360deg) skew(0deg, 180deg) ;
/* opacity: 0; */
}
100% {
transform: rotateY(180deg) translate(100px, 2000px);
opacity: 1;
}
}
@keyframes left {
from {
transform: translateX(0);
}
to {
transform: translateX(120px);
}
}
</style>
</head>
<body>
<div class="coin-container">
<div class="coin"></div>
</div>
</body>
</html>