-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06Slide.html
51 lines (35 loc) · 1.04 KB
/
06Slide.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Slide - JQuery</title>
<!-- JQuery -->
<script src="jquery-3.6.4.min.js"></script>
<!-- Script -->
<script>
// Ao carregar o documento
$(document).ready(function(){
//Ocultar
$(".ocultar").click(function(){
$(".imagem").slideUp(5000);
});
//Exibir
$(".exibir").click(function(){
$(".imagem").slideDown(5000);
});
});
/*
Tempo de slide:
1 - Default 0,4s
2 - Slow 0,6s
3 - Valor em milisegundos (3s = 3000)
*/
</script>
</head>
<body>
<h1 class="exibir">Exibir</h1>
<h1 class="ocultar">Ocultar</h1>
<hr>
<img class="imagem" width="600px" height="800px" src="images/img_Chaplin.jpg">
</body>
</html>