-
Notifications
You must be signed in to change notification settings - Fork 0
/
05Fade.html
52 lines (37 loc) · 1.11 KB
/
05Fade.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fade - JQuery</title>
<!-- JQuery -->
<script src="jquery-3.6.4.min.js"></script>
<!-- Script -->
<script>
// Ao carregar o documento
$(document).ready(function(){
//Ocultar H1
$("img").css("display","none");
//Exibir o H1
$("#exibir").click(function(){
$("img").fadeIn(3000);
});
//Ocultar o H1
$("#ocultar").click(function(){
$("img").fadeOut("slow");
})
});
/*
Tempo de fade:
1 - Default 0,4s
2 - Slow 0,6s
3 - Valor em milisegundos (3s = 3000)
*/
</script>
</head>
<body>
<button id="exibir">Exibir</button>
<button id="ocultar">Ocultar</button>
<hr>
<img width="800px" height="600px" src="images/img_Morgana.jpg">
</body>
</html>