-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut_36.html
66 lines (59 loc) · 1.41 KB
/
tut_36.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
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Key Frames and Animations</title>
<style>
.container {
/* display: flex; */
background-color: green;
}
.box {
background-color: brown;
width: 250px;
height: 250px;
position: relative;
/* animation-name: saksham2; */
/* animation-duration: 2s; */
/* animation-iteration-count: 3; */
/* animation-fill-mode:forwards ; */
animation: saksham2 5s ease-in 1s 12 backwards ;
}
@keyframes saksham2{
0%{
top: 0px;
left: 0px;
}
25%{
top: 250px;
left: 0px;
}
75%{
top: 250;
left: 250;
}
100%{
top: 0px;
left: 250px;
}
}
@keyframes saksham1 {
from {
width: 200px;
}
to {
width: 400px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="box">
This ia a box
</div>
</div>
</body>
</html>