-
Notifications
You must be signed in to change notification settings - Fork 0
/
e1.js
162 lines (95 loc) · 2.82 KB
/
e1.js
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
//window.onload= function(){}
//con JQUERY
/*
PARA ESCRIBIR DENTRO DE UN ID EN EL HTML
$("#caja").html("con JQuery la vida es mejor");
$("div"); SELECCIONAR ETIQUETAS
$("#caja"); SELECCIONAR ID
$(".div"); SELECCIONAR CLASES
*/
/*
METODOS MÁS UTILIZADOS
html()
hide()
show()
*/
//$("#fecha").html(new Date());
//SI PONGO EL WINDOW ONLOAD NO ME FUNCIONA LA FUNCION SEGUNDOS ()
$(function(){
$("#fecha").append("<ul><li></li><p>:</p><li></li><p>:</p><li></li></ul>");
setInterval(function(){
let fechita = new Date();
let horitas=('0' + fechita.getHours()).slice(-2);
let minutitos= ('0' + fechita.getMinutes()).slice(-2);
let segunditos= ('0' + fechita.getSeconds()).slice(-2);
let dia= fechita.getDay();
switch(dia){
case 1:
dia= "Monday ";
break;
case 2:
dia= "Tuesday";
break;
case 3:
dia= "Wednesday";
break;
case 4:
dia= "Thursday";
break;
case 5:
dia= "Friday";
break;
case 6:
dia= "Saturday";
break;
case 7:
dia= "Sunday";
break;
}
$("li:first-child").html(horitas);
$("li:nth-of-type(2)").html(minutitos);
$("li:last-child").html(segunditos);
$("#day").html(dia);
}, 1000)
//BORDE DE COLOR
let line= document.querySelector("ul");
const randomColor = () => '#' + Math.random().toString(16).substr(-6)
const changeColorLine = () => line.style.borderColor = randomColor()
//setInterval(() => {
//changeColorSecondLi()
//}, 60000)
setInterval(() => {
changeColorLine()
}, 1000)
})
/*function colores(){
function randomColor(){
'#' + Math.random().toString(16).substr(-6);}
let changeColor = document.body.style.backgroundColor = randomColor()
}
setInterval(colores(), 1000)*/
/*let i= 0;
if(i<60){
for(i=0; i>=60; i++){
//METER AQUÍ LA MOVIDA HEXADECIMAL
//PARA QUE SE CAMBIE EL COLOR DE
//FONDO DE LOS NUMEROS.
}
}
else if (i>=60){
for(i=60; i<=0; i--){
//METER AQUÍ LA MOVIDA HEXADECIMAL
//PARA QUE SE CAMBIE EL COLOR DE
//FONDO DE LOS NUMEROS.
}
}
}*/
/*
let fecha;
let elem= document.getElementById("elem1");
function secondos(){
fecha= new Date();
let hora= fecha.getHours() + " " + fecha.getMinutes() + " " + fecha.getSeconds();
elem.innerHTML= hora;
}
setInterval("secondos()", 1000); */