-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbouncing-arrows.html
71 lines (71 loc) · 1.53 KB
/
bouncing-arrows.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
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bouncing Arrow</title>
<style>
.arrow-down,
.arrow-right {
position: relative;
text-align: center;
color: red;
font-size: 150px;
transform: rotate(-90deg);
margin: 120px 0;
animation: bounce 3s ease 0s infinite;
/* border: 2px solid black; */
}
.arrow-right {
transform: rotate(180deg);
transition: all 0.3s ease;
animation: forward 3s ease 0s infinite;
}
@keyframes bounce {
0% {
top: 0px;
}
50% {
top: 20px;
color: hotpink;
}
100% {
top: 0px;
color: cornflowerblue;
}
}
@keyframes forward {
0% {
left: 0;
}
50% {
left: 20px;
color: crimson;
}
100% {
left: 0;
}
}
.emo {
text-align: center;
font-size: 50px;
animation: move 4s ease-in-out 2s infinite;
}
@keyframes move {
from {
margin-left: -100%;
filter: hue-rotate(90deg);
}
to {
margin-left: 100%;
filter: hue-rotate(190deg);
}
}
</style>
</head>
<body>
<div class="arrow-down">⇜</div>
<div class="arrow-right">⇜</div>
<div class="emo">😁</div>
</body>
</html>