-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcallbacks.html
39 lines (37 loc) · 1.31 KB
/
callbacks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>callbacks</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 id="agenda">Estoy despertando</h1>
<script>
const DESPERTAR = 3000;
const DUCHA = 2000;
const VESTIRSE = 2000;
const DESAYUNAR = 3000;
const PLATZI = 5000;
const agenda = document.getElementById('agenda');
//Cada funcion que se ha ejecutado luego del setTimeout es un callback;
setTimeout(() => {
agenda.textContent = "Me estoy duchando...";
setTimeout(() => {
agenda.textContent = "Me estoy vistiendo";
setTimeout(() => {
agenda.textContent = "Estoy desayunando";
setTimeout(() => {
agenda.textContent = "Estoy estudiando en platzi";
setTimeout(() => {
agenda.textContent = "Termine de estudiar";
},PLATZI)
}, DESAYUNAR);
}, VESTIRSE)
}, DUCHA);
}, DESPERTAR);
</script>
</body>
</html>