-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path19thclass.html
More file actions
114 lines (91 loc) · 1.79 KB
/
19thclass.html
File metadata and controls
114 lines (91 loc) · 1.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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>Document</title>
<style media="screen">
body{
margin: 0;
padding: 0;
display: grid;
place-items: center;
min-height: 100vh;
}
.main{
position: relative;
top: 350px;
}
.main .line{
height: 13px;
width: 450px;
background: black;
border: 2px solid black;
border-radius: 0px;
animation:line 2s linear infinite;
}
@keyframes line{
0%{
transform: rotateZ(0deg);}
25%{
transform: rotateZ(-25deg);}
75%{
transform: rotateZ(25deg);}
}
.main .ball{
height: 25px;
width: 25px;
background: red;
border: 2px solid black;
border-radius: 50%;
position: absolute;
bottom: 62px;
animation: jump 2s linear infinite;
}
.main .ball:nth-child(2){
left: 10px;
}
.main .ball:nth-child(3){
right: 10px;
animation-delay: 1s;
}
@keyframes jump{
0%{
transform: translateY(0px);
}
25%{
transform: translateY(30px);
}
50%{
transform:translateY(-100px);
}
75%{
transform: translateY(-30px);
}
100%{
transform: translateY(0px);
}
}
.main .base{
height: 50px;
width: 50px;
background: blue;
border: 2px solid black;
border-radius: 50%;
margin-left: 500px;
}
</style>
</head>
<body>
<!-- <p>Date:29/December/2022</p>
<p>Day:Thursday</p>
<p>Class= assignment</p> -->
<div class="main">
<div class="line"></div>
<div class="ball"></div>
<div class="ball"></div>
<div class="base"></div>
</div>
</body>
</html>