-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
24 lines (21 loc) · 795 Bytes
/
script.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
// Carrossel
let setaLefth = window.document.getElementById("seta-Lefth")
let Bruna = window.document.getElementById("person1")
let Leonardo = window.document.getElementById("person2")
let Samantha = window.document.getElementById("person3")
let setaRight = window.document.getElementById("seta-Right")
let Gradiente = window.document.getElementById("gradiente")
function rolagemRight() {
Bruna.style = "display:none"
Samantha.style = "display:flex"
setaRight.style = "display:none"
setaLefth.style = "display:flex"
Gradiente.style = "background: var(--bc-main-2)"
}
function rolagemLefth() {
Samantha.style = "display:none"
Bruna.style = "display:flex"
setaLefth.style = "display:none"
setaRight.style = "display:flex"
Gradiente.style = "background: var(--bc-main-3)"
}