-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
38 lines (30 loc) · 1.07 KB
/
main.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
async function userData() {
await fetch("https://api.jsonbin.io/v3/b/64ba1bd4b89b1e2299c1dbc0")
.then((response) => {
return response.json();
})
.then((data) => {
// Estudando os dados
console.log(data)
// Criando o DOM com JS
let zodicName = document.createElement('p')
let zodicImg = document.createElement('img')
zodicName.textContent = data["record"]["Zodic"]["0"]["name"]
zodicImg.src = data["record"]["Zodic"]["0"]["avatar"]
zodicName.className = 'textZodiac';
zodicImg.className = 'imgZodiac';
root.append(zodicName, zodicImg)
})
.catch((error) => {
console.error(error)
})
}
userData()
// Falando de Clases
// O ClassName em JavaScript serve para manipular o atributo class de um elemento HTML.
// Define uma classe para o elemento
// zodicImg.className = 'imgZodiac';
// Adiciona uma nova classe
// div.className += 'imgAnimate';
// Remove todas as classes
// div.className = '';