-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Work Schedule Optimization</title>
<meta name="viewport" content="initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="jquery.firefly-0.7.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.firefly({
minPixel: 4,
maxPixel: 8,
total : 30,
zIndex: 1,
});
});
</script>
<div id="root"></div>
<script src="./main.js"></script>
</body>
</html>