-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimation.html
More file actions
83 lines (77 loc) · 2.3 KB
/
Animation.html
File metadata and controls
83 lines (77 loc) · 2.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!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>Animation & Keyframes</title>
<style>
.container {
display: flex;
background-color: greenyellow;
}
.box h1{
text-align: center;
}
.box {
width: 250px;
height: 250px;
background-color: green;
position: relative;
/* animation-name: Asad1; */
animation-name: Asad2;
animation-duration: 8s;
animation-iteration-count: 1;
/* animation-fill-mode: forwards; Animation ja kr atak jayega */
/* animation-fill-mode: alternate; animation ja kr khtm hojayega */
/* animation-timing-function: ease-in; shuru ma slow phr tez */
/* animation-timing-function: ease-out; show ma tez phr bad ma slow */
/* animation-timing-function: ease-in-out; shuru ma slow hoga tez jayega phr end ma dobara slow */
animation-fill-mode: alternate;
/* animation-timing-function: ease-in-out; */
/* animation-delay: 3s; */
animation-direction: alternate;
/* animation-direction: reverse; */
/* Shorthand of animation */
/* animation: name, duration, timing-function, animation-delay, iteration count, fill mode */
/* animation: asad3 5s ease-in 3s 1 reverse; */
}
@keyframes Asad1 {
from {
width: 200px;
}
to {
width: 1200px;
}
}
@keyframes Asad2{
0%{
top: 0px;
left: 0px;
}
25%{
top: 250px;
left: 0px;
}
50%{
top: 250px;
left: 250px;
}
75%{
top: 0px;
left: 250px;
}
100%{
left: 0px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<h1>I am a box</h1>
</div>
</div>
</body>
</html>