-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 1.27 KB
/
index.html
File metadata and controls
51 lines (45 loc) · 1.27 KB
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
<!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.0">
<title>Document</title>
</head>
<style>
.img {
display: flex;
}
</style>
<script style="display: none;" src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<body>
<!-- <header>
Menu arriba
</header>
<main>
<section>
<img id="imagencita" class="img" src="https://picsum.photos/200/300" alt="imagen prueba">
</section>
</main>
<aside>
HOLA SOY UN ASIDE
</aside>
<footer>
HOLA SOY UN FOOTER
</footer> -->
<script type="text/javascript" src="./prueba.js"></script>
<script>
/* $(document).ready(() => {
console.log($('body').children());
$('body').children().hide();
let body = $('body').children();
let boolean = true;
for(let i = 0; i < body.length; i++) {
let element = body.eq(i);
element.delay(i * 500).fadeIn(2000);
}
}); */
</script>
</body>
</html>