-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetflix.js
36 lines (30 loc) · 1.06 KB
/
netflix.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
var liste = [
{ image: "photo-movie/1.jpg",type:"movie", },
{ image: "photo-movie/2.jpg",type:"movie", },
{ image: "photo-movie/2.jpg",type:"movie", },
{ image: "photo-movie/4.jpg",type:"movie", },
{ image: "photo-movie/5.jpg",type:"movie", },
{ image: "photo-série/6.jpg",type:"série" },
{ image: "photo-série/7.jpg",type:"série" },
{ image: "photo-série/8.jpg",type:"série" },
{ image: "photo-série/9.jpg",type:"série" },
{ image: "photo-série/10.jpg",type:"série" },
]
for (let index = 0; index < liste.length; index++) {
console.log(liste[index]);
if (liste[index].type === "movie") {
document.getElementById("movie").innerHTML +=
`
<div id="carte">
<img width="260px" src= ${liste[index].image}>
<div>
`
} else {
document.getElementById("series").innerHTML +=
`
<div id="carte">
<img width="260px" src= ${liste[index].image}>
<div>
`
}
}