-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexx.html
36 lines (35 loc) · 979 Bytes
/
indexx.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
<!-- Credits to http://codepen.io/mikeambrosi/pen/JdEMmY -->
<html>
<head>
<style>
/* Run on https://autoprefixer.github.io/ to compile CSS */
.loading {
position: absolute;
top: 50%;
left: 50%;
margin: -15px 0 0 -15px;
height: 30px;
width: 30px;
border: 2px solid #ddd;
border-left-color: #009688;
border-radius: 30px; /* border-radius: 50% */
-webkit-animation: animation-rotate 950ms cubic-bezier(.64,2,.56,.6) infinite;
animation: animation-rotate 950ms cubic-bezier(.64,2,.56,.6) infinite;
}
@-webkit-keyframes animation-rotate {
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes animation-rotate {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="loading"></div>
</body>
</html>