-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (70 loc) · 3.26 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
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Proyecto 1 - Sergio Velasquez</title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="./font-awesome/css/font-awesome.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="./vis-4.18.1/dist/vis.js"></script>
<link href="./vis-4.18.1/dist/vis.css" rel="stylesheet" type="text/css" />
<style type="text/css">
#mynetwork {
margin: auto;
width: 80%;
height: 500px;
border: 1px solid #4B6A78;
}
.link{
font-size: 0.8em;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="header clearfix">
<h3 class="text-muted">Github Followers Net</h3>
</div>
<div class="jumbotron">
<h1>Explora tu red de seguidores de Github</h1>
<p class="lead">Ingresa tu Github ID para comenzar</p>
<input type="text" class="form-control" id="githubID" placeholder="githubID">
<br>
<p><a class="btn btn-lg btn-success" href="javascript:crearRed()" role="button">Explorar</a></p>
</div>
<div style="display: none;" class="refrescar" >
Juega con el grafo, si das doble click sobre un folllower te enviara a su página de github o si haces un click simple podras ver sus seguidores. Si quieres empezar una nueva busqueda selecciona el boton que está más abajo.
</div>
<br>
<div style="display: none;" class="refrescar row">
<div class="col-md-10">
<div style="float:right;">Recargar el grafo a su estado original <a href='javascript:crearRed()'><i class="fa fa-refresh fa-5" aria-hidden="true"></i></a></div>
</div>
</div>
<div style="display: none;" class="refrescar" id="mynetwork"></div>
<div style="display: none;" class="refrescar row">
<div class="col-md-1">
</div>
<div class="col-md-10">
<i class="link"><a href="http://visjs.org/"> Grafics by: Vis JS</a></i>
</div>
</div>
<br>
<br>
<a style="text-align: center; display: none;" class="btn btn-lg btn-success refrescar" href="javascript:mostrar()" role="button">Nueva busqueda</a>
<br>
<br>
<footer class="footer" >
<p>2017 Sergio Velasquez - Para conocer más acerca del desarrollador da <a href="https://syvelasquez10.github.io/WebDevUniandes-SergioVelasquez/proyecto1%20/">click aquí</a></p>
</footer>
</div> <!-- /container -->
<script type="text/javascript" src="./js/cargarRed.js"></script>
</body></html>