-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (77 loc) · 3.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Travelling Salesman Problem - Not decided solution yet</title>
<script src="node_modules\vue\dist\vue.js"></script>
<link rel="stylesheet" href="node_modules\fullpage.js\dist\jquery.fullpage.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.3/socket.io.js"></script>
<script src="node_modules\fullpage.js\dist\jquery.fullpage.js"></script>
<link rel="stylesheet" href="/css/master.css">
<script src="GA\p5.min.js"></script>
<script src="GA\p5.dom.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,100i,400,400i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="css\popup.css">
<!-- <script src="js\jquery.popup.min.js" charset="utf-8"></script>
<script src="css\popup.css" charset="utf-8"></script> -->
<!-- <script src="GA\script.js" charset="utf-8"></script> -->
<!-- Bootstrap CSS -->
</head>
<body>
<div id="fullpage">
<div class="section">
<div class="slide image">
<div id="stats">
<p>connected users: <b>{{connectedUsers}}</b></p>
<p>Iteration: <b>{{iteration}}</b></p>
<p>Percent: <b>{{percent}} %</b></p>
<p>Minimal Cost: <b>{{ minimalCost }}</b></p>
<button type="button" name="button" @click="participate()">compute</button>
<button type="button" name="button" @click="set()">setup</button>
</div>
<div id="graph">
<h2>Genetic Algorithm Visualization</h2>
<h3>The processing is done in a distributed manner</h3>
</div>
<!-- <div class="mainText">
<h1>Distributed genetic algorithm solver for <br> Travelling salesman problem</h1>
<h3>Before participating you should be familiar with few concepts, which are the basis of this project</h3>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Volunteer_computing?pw=500&ph=600" class="popup">Volunteer Computing</a></li>
<li><a href="https://simple.wikipedia.org/wiki/Travelling_salesman_problem?pw=500&ph=600" class="popup">Travelling Salesman problem</a></li>
<li><a href="https://www.intechopen.com/books/traveling-salesman-problem-theory-and-applications/traveling-salesman-problem-an-overview-of-applications-formulations-and-solution-approaches?pw=500&ph=600" class="popup">Applications on Travelling Salesman problem</a></li>
<li><a href="#">How it works?</a></li>
</ul>
<button class="snip1544" >Participate</button>
</div> -->
</div>
<transition name="fade">
<footer id="setupNotification" v-show="setupNewNotification">
<p>{{setupNotification}}</p>
</footer>
</transition>
<transition name="fade">
<footer id="notification" v-show="newNotification">
<p>{{notification}}</p>
</footer>
</transition>
</div>
</div>
<script>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
<script src="js\jquery.popup.js"></script>
<script type="text/javascript">
// $(document).ready(function() {
// $('#fullpage').fullpage();
// });
$('#fullpage').fullpage({
anchors: ['page1']
});
$('a.popup').popup();
</script>
<script src="js/app.js" charset="utf-8"></script>
</html>