-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
42 lines (41 loc) · 1.1 KB
/
style1.css
File metadata and controls
42 lines (41 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation</title>
<style>
a{
animation: bouncing 0.5s ease 0s infinite alternate both;
background: darkblue;
border-radius: 50%;
display: inline-block;
color: white;
cursor: pointer;
font-size: 0.75rem;
font-weight: 300;
letter-spacing: 0.2em;
padding: 1em 2em 1.1em;
position: relative;
text-decoration: none;
text-transform: uppercase;
vertical-align: top;
margin-top: 100px;
}
@keyframes bouncing{
0%{
bottom: 0;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
100%{
bottom: 50px;
box-shadow: 0 50px 50px rgba(0,0,0,0.1);
}
}
</style>
</head>
<body>
<a>Loading</a>
</body>
</html>