-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
228 lines (215 loc) · 8.68 KB
/
index.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html>
<head>
<title>OS VISUALIZER</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
background-color: #f8f9fa;
background-image: image(url("c780455026110284ea07a4e793fff651.mp4"));
}
.flip-card {
background-color: transparent;
width: 190px;
height: 254px;
perspective: 1000px;
font-family: sans-serif;
}
.title {
font-size: 1.5em;
font-weight: 900;
text-align: center;
margin: 0;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border: 1px solid #ced4da;
border-radius: 1rem;
}
.flip-card-front {
background: linear-gradient(120deg, #f8f9fa 60%, #e9ecef 88%, #dee2e6 40%, #ced4da 48%);
color: #343a40;
}
.flip-card-back {
background: linear-gradient(120deg, #e9ecef 30%, #dee2e6 88%, #f8f9fa 40%, #ced4da 78%);
color: #343a40;
transform: rotateY(180deg);
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
</style>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="c780455026110284ea07a4e793fff651.mp4" type="video/mp4">
</video>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">OS VISUALIZER</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</nav>
<div class="container my-5">
<h1 class="text-center">OS VISUALIZER</h1>
<div class="row">
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='Scheduling/index.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">Process Scheduling</p>
<p>FCFS,SJF,ROUND ROBIN</p>
</div>
<div class="flip-card-back">
<p class="title">Process scheduling</p>
<p>Mechanism through which OS selects processes to execute next from the ready queue, based on scheduling algorithms designed to optimize resource utilization.</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='process_sync/index.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">Process Synchronization</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p>Leave Me</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='Bankers/bankers.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">Bankers Algorithm</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p>Leave Me</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='mft_mvt/Fit.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">Fit Algorithms</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p>Leave Me</p>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='Page_Replacement Algo/page replacement_home.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">Page Replacement Algorithm</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p>Leave Me</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='Disk/disk.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">Disk Scheduling</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p>Leave Me</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="flip-card" onclick="window.location.href='file allocation/file.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">File Allocation</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p class="back">Leave Me</p>
</div>
</div>
</div>
</div>
<div class="column1">
<div class="flip-card" onclick="window.location.href='mft_mvt\MVFT.html'">
<div class="flip-card-inner">
<div class="flip-card-front">
<p class="title">MFT and MVT</p>
<p>Hover Me</p>
</div>
<div class="flip-card-back">
<p class="title">BACK</p>
<p class="back">Leave Me</p>
</div>
</div>
</div>
</div>
<!-- Add more columns here -->
</div>
</div>
</div>
</body>
</html>