-
Notifications
You must be signed in to change notification settings - Fork 3
/
keyframes.html
64 lines (61 loc) · 1.54 KB
/
keyframes.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
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>keyframes-animation</title>
<style>
.container{
background-color: aquamarine;
}
.box{
border: 2px solid black;
background-color: cornflowerblue;
width: 250px;
height: 100px;
position: relative;
/* animation-name: trial; */
animation-name: trial2;
animation-duration: 0.5s;
animation-iteration-count: 5;
/* animation-fill-mode: forwards; */
/* animation-timing-function: ease-in-out; */
/* animation-delay: 2s; */
/* animation-direction: reverse; */
}
@keyframes trial2 {
0%{
top: 0px;
left: 0px;
}
25%{
top: 250px;
left: 0px;
}
75%{
top: 250px;
left: 250px;
}
100%{
top: 0px;
left: 250px;
}
}
@keyframes trial {
from{
width: 0%;
}
to{
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="box">
This is a box
</div>
</div>
</body>
</html>