-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimation.htm
More file actions
45 lines (44 loc) · 982 Bytes
/
Copy pathanimation.htm
File metadata and controls
45 lines (44 loc) · 982 Bytes
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
<! DOCTYPE html>
<html>
<head>
<title> FIRST ANIMATIONS
</title>
<style>
@keyframes example {
from{ background-color: #5E35B1 ; }
to{background-color: #FFEB3B; }
}
@keyframes example1 {
0% {background-color: #5E35B1;}
20%{background-color: #EC407A;}
40%{background-color: #43A047;}
60%{background-color: #CCFF33 ;}
80%{background-color: #663333;}
100%{background-color:#FFEB3B; }
}
div{
width:200px;
height:200px;
border:4px solid black;
border-radius: 30px;
background-color: #5E35B1;
animation-name: example;
animation-duration: 7s;
}
div#special{
width:200px;
height:200px;
border:4px solid black;
border-radius: 30px;
background-color: #5E35B1;
animation-name: example1;
animation-duration: 7s;
}
</style>
</head>
<body>
<p>This box represents the animations where the box changes it's colours:</p>
<div></div>
<div id="special"></n></div>
</body>
</html>