-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc3.js
More file actions
34 lines (25 loc) · 1.52 KB
/
c3.js
File metadata and controls
34 lines (25 loc) · 1.52 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
//plano de fundo que muda
document.getElementById('changeBackgroundBtn1').addEventListener('mouseenter', function() {
document.body.style.backgroundImage = "url('img/capitulo1/inicial/personagens.jpg')";
});
document.getElementById('changeBackgroundBtn1').addEventListener('mouseleave', function() {
document.body.style.backgroundImage = "url('img/inicial/poppyplaytime.jpg')";
});
document.getElementById('changeBackgroundBtn2').addEventListener('mouseenter', function() {
document.body.style.backgroundImage = "url('img/capitulo1/inicial/historia.jpg')";
});
document.getElementById('changeBackgroundBtn2').addEventListener('mouseleave', function() {
document.body.style.backgroundImage = "url('img/inicial/poppyplaytime.jpg')";
});
document.getElementById('changeBackgroundBtn3').addEventListener('mouseenter', function() {
document.body.style.backgroundImage = "url('img/capitulo1/inicial/mecanicas.png')";
});
document.getElementById('changeBackgroundBtn3').addEventListener('mouseleave', function() {
document.body.style.backgroundImage = "url('img/inicial/poppyplaytime.jpg')";
});
document.getElementById('changeBackgroundBtn4').addEventListener('mouseenter', function() {
document.body.style.backgroundImage = "url('img/capitulo1/inicial/fitas.png')";
});
document.getElementById('changeBackgroundBtn4').addEventListener('mouseleave', function() {
document.body.style.backgroundImage = "url('img/inicial/poppyplaytime.jpg')";
});