-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (69 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CPU Scheduling Algorithm Visualization</title>
<LINK REL="SHORTCUT ICON" HREF="https://github.com/HUFI-11DHTH8/SJF.Poject/blob/main/communist.png">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div>
<div>
Thuật toán:
<form id="algorithm">
<input type="radio" name="algorithm" value="fcfs" checked/> FCFS<br/>
<input type="radio" name="algorithm" value="sjf"/> SJF<br/>
</form>
<br>
</div>
<table id="inputTable">
<tr>
<th>Tiến trình</th>
<th>Thời gian đến</th>
<th>Thời gian xử lý</th>
<th class="servtime">Thời gian chờ</th>
<th class="priority-only">Priority</th>
</tr>
<tr>
<td>P1</td>
<td>0</td>
<td><input class="initial exectime" type="text" value="5" /></td>
<td class="servtime"></td>
<td class="priority-only initial"><input type="text"/></td>
</tr>
<tr>
<td>P2</td>
<td>1</td>
<td><input class="initial exectime" value="3" /></td>
<td class="servtime"></td>
<td class="priority-only" ><input type="text"/></td>
</tr>
<tr>
<td>P3</td>
<td>2</td>
<td><input class="initial exectime" value="3" /></td>
<td class="servtime"></td>
<td class="priority-only" ><input type="text"/></td>
</tr>
</table>
<input id="minus" style="display: inline; left: 428px; position: absolute; top: 170px;" type="button" value="-" onclick="deleteRow();" />
</div>
<input type="button" value="+" onclick="addRow();" />
<div>
</div>
<p id="quantumParagraph" hidden>Quantum:
<input style="width: 50px;" id="quantum" type="text" value="3" />
</p>
<input type="button" value="Play" onclick="draw();" />
<br/><br/>
<fresh>
</fresh>
<p>
Timer: <strong id="timer"></strong> sec
</p>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script><script src="./script.js"></script>
</body>
</html>