-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
164 lines (153 loc) · 4.15 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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<title>Reloj</title>
<link rel="icon" type="image/png" href="Image/faviconv2.png">
<script src="angular.min.js"></script>
<style>
@font-face
{
font-family: roboto;
src: url('Font/Roboto/Roboto-Light.ttf') format('truetype');
}
.fuente_reloj
{
font-family: roboto;
font-size: 72px;
}
.presente
{
background-color: #1A0B3B;
color: #979E3D;
}
.pasado
{
background-color: #CCC !important;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<!--script src="dias.js"></script-->
<div ng-app="myApp">
<div ng-controller='TimeCtrl'>
<div class="fuente_reloj presente">{{ clock | date:'yyyy-MM-dd HH:mm:ss Z'}}</div>
Búscar: <input ng-model="query" />
<table class="table table-striped table-hover">
<tr>
<th>
ΔDIA(S)
</th>
<th>
ΔSEGUNDO(S)
</th>
<th>
DESCRIPCIÓN
</th>
<th>
FECHA
</th>
</tr>
<tr ng-repeat="fecha in getFechas() | orderBy:'dia':false | filter:query" class="{{ EsPasado(fecha.dia) }}">
<td>
{{ DiferenciaEnDias(fecha.dia) | number:0 }}
</td>
<td>
{{ DiferenciaEnSegundos(fecha.dia) | number:0 }}
</td>
<td>
{{ fecha.descripcion }}
</td>
<td>
{{fecha.dia | date:'yyyy-MM-dd' }}
</td>
</tr>
</table>
</div>
</div>
</div>
<script>
var module = angular.module('myApp', []);
module.controller('TimeCtrl', function($scope, $interval) {
$scope.autor = "Luis Miguel Bravo";
var fechas = [
{
descripcion : 'Llegada de Luis Miguel Bravo a Santiago de Chile',
dia : new Date("10/19/2016")
},
{
descripcion : 'Mudanza a nuevo departamento',
dia : new Date("5/1/2017")
},
{
descripcion : 'Maraton de programación',
dia : new Date("11/26/2016")
},
{
descripcion : 'Inicio 2BRAINS',
dia : new Date("11/2/2016")
},
{
descripcion : 'Navidad',
dia : new Date("12/24/2016")
},
{
descripcion : 'Año nuevo',
dia : new Date("12/31/2016")
},
{
descripcion : 'Envio de correo solicitando visa de trabajo',
dia : new Date("10/26/2016")
},
{
descripcion : 'Llegada de Geiby a Chile',
dia : new Date("10/4/2016")
},
{
descripcion : 'Llegada de Jeniffer Brigithe Ramos Herrera a Santiago de Chile',
dia : new Date("11/17/2016")
},
{
descripcion : 'Ultima vez que tome alcohol, vino en chile, lira 499, piso 3, apt 313',
dia : new Date("11/18/2016")
},
{
descripcion : 'Ultima vez que Fume, Santa Lucia 212 2BRAINS',
dia : new Date("11/18/2016")
}
];
$scope.getFechas = function() {
return fechas;
};
var tick = function() {
$scope.clock = Date.now();
};
$scope.DiferenciaEnDias = function(midia){
var _hoyDia = new Date(Date.now());
var timeDiff = midia.getTime() - _hoyDia.getTime();
return Math.ceil(timeDiff / (1000 * 3600 * 24));
};
$scope.DiferenciaEnSegundos = function(midia)
{
var _hoyDia = new Date(Date.now());
var dif = midia.getTime() - _hoyDia.getTime();
var Seconds_from_T1_to_T2 = dif / 1000;
//return Math.round(Seconds_from_T1_to_T2);
return Seconds_from_T1_to_T2;
};
$scope.EsPasado = function(midia){
var _hoyDia = new Date(Date.now());
var dif = midia.getTime() - _hoyDia.getTime();
if (dif < 0 )
{
return "pasado";
}
return "";
};
tick();
$interval(tick, 1000);
});
</script>
</body>
</html>