-
Notifications
You must be signed in to change notification settings - Fork 0
/
fundamentos.js
45 lines (39 loc) · 1.56 KB
/
fundamentos.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
function img01() {
var tipo = document.getElementById('botao1').type;
if (tipo == 'reset') {
document.getElementById('botao1').type = 'button';
document.getElementById('trocarimg').src='imagensparge/compjava.png';
document.getElementById('botao1').value = 'VOLTAR';
}
else {
document.getElementById('botao1').type = 'reset';
document.getElementById('trocarimg').src='imagensparge/scientist2.png';
document.getElementById('botao1').value = 'COMPUTAÇÃO';
}
}
function img02() {
var tipo = document.getElementById('botao2').type;
if (tipo == 'reset') {
document.getElementById('botao2').type = 'button';
document.getElementById('trocarimg').src='imagensparge/negociojava.png';
document.getElementById('botao2').value = 'VOLTAR';
}
else {
document.getElementById('botao2').type = 'reset';
document.getElementById('trocarimg').src='imagensparge/scientist2.png';
document.getElementById('botao2').value = 'NEGÓCIOS';
}
}
function img03() {
var tipo = document.getElementById('botao3').type;
if (tipo == 'reset') {
document.getElementById('botao3').type = 'button';
document.getElementById('trocarimg').src='imagensparge/estajava.png';
document.getElementById('botao3').value = 'VOLTAR';
}
else {
document.getElementById('botao3').type = 'reset';
document.getElementById('trocarimg').src='imagensparge/scientist2.png';
document.getElementById('botao3').value = 'ESTATÍSTICA';
}
}