forked from hasan-haider/html-css3-js-project-for-beginner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
50 lines (49 loc) · 1.26 KB
/
2.html
File metadata and controls
50 lines (49 loc) · 1.26 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#abc{
position:absolute;
left:50%; top:50%;
z-index:1;
width:100px; height:100px;
border:30px solid #fff6e5;
border-radius:50%;
-webkit-animation:cco 1s infinite;
animation:cco 1s infinite;
}
#abcd{
position:relative;
width:80%; height:80%;
margin:10 10;
border-radius:50%;
-webkit-animation:cci 1s infinite;
animation:cci 1s infinite;
}
#abcd1{
position:absolute;
width:60%; height:60%;
margin:-80 0 0 20;
border-radius:50%;1s infinite;
animation:cci1 1s infinite;
}
@-webkit-keyframes cco{from{background-color:#fff6e5;}
to{background-color:#ffdc9f;}}
@keyframes cco{from{background-color:#fff6e5;}
to{background-color:#ffdc9f;}}
@-webkit-keyframes cci{from{background-color:#ffdc9f;}
to{background-color:#ffc259;}}
@keyframes cci{from{background-color:#ffdc9f;}
to{background-color:#ffc259;}}
@-webkit-keyframes cci1{from{background-color:#ffc259;}
to{background-color:#ffa812;}}
@keyframes cci1{from{background-color:#ffc259;}
to{background-color:#ffa812;}}
</style>
</head>
<body>
<div id="abc">
<div id="abcd"></div>
<div id="abcd1"></div></div>
</body>
</html>