
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
body{
background: #000;
}
.outer,
.middle,
.inner {
border: 3px solid transparent;
border-top: 3px solid #3cefff;
border-right: 3px solid #3cefff;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.outer {
width: 48px;
height: 48px;
animation: action 2s linear infinite;
}
.middle {
width: 32px;
height: 32px;
animation: action 1.75s linear reverse infinite;
}
.inner {
width: 16px;
height: 16px;
animation: action 1.5s linear infinite;
}
@keyframes action {
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
style>
head>
<body>
<div class="loader">
<div class="outer">div>
<div class="middle">div>
<div class="inner">div>
div>
body>
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