-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
87 lines (76 loc) · 2.6 KB
/
app.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// local reviews data
const reviews = [
{
id: 1,
name: 'susan smith',
job: 'web developer',
img: 'https://images2.imgbox.com/e0/57/qI5bbwvg_o.jpeg',
text: "I'm baby meggings twee health goth +1. Bicycle rights tumeric chartreuse before they sold out chambray pop-up. Shaman humblebrag pickled coloring book salvia hoodie, cold-pressed four dollar toast everyday carry",
},
{
id: 2,
name: 'anna johnson',
job: 'web designer',
img: 'https://images2.imgbox.com/2e/6e/JAMvTZ56_o.jpeg',
text: 'Helvetica artisan kinfolk thundercats lumbersexual blue bottle. Disrupt glossier gastropub deep v vice franzen hell of brooklyn twee enamel pin fashion axe.photo booth jean shorts artisan narwhal.',
},
{
id: 3,
name: 'peter jones',
job: 'intern',
img: 'https://images2.imgbox.com/56/88/oJvFN3l5_o.jpeg',
text: 'Sriracha literally flexitarian irony, vape marfa unicorn. Glossier tattooed 8-bit, fixie waistcoat offal activated charcoal slow-carb marfa hell of pabst raclette post-ironic jianbing swag.',
},
{
id: 4,
name: 'bill anderson',
job: 'the boss',
img: 'https://images2.imgbox.com/8b/1c/vwWNTsCd_o.jpeg',
text: 'Edison bulb put a bird on it humblebrag, marfa pok pok heirloom fashion axe cray stumptown venmo actually seitan. VHS farm-to-table schlitz, edison bulb pop-up 3 wolf moon tote bag street art shabby chic. ',
},
];
//select items
let img = document.getElementById('person-img');
let author = document.getElementById('author');
let job = document.getElementById('job');
let info = document.getElementById('info');
let prevBtn = document.querySelector('.prev-btn');
let nextBtn = document.querySelector('.next-btn');
let randomBtn = document.querySelector('.random-btn');
//set starting item
let currentItem = 0;
//load intial item
window.addEventListener("DOMContentLoaded", function(){
showPerson();
});
//show person based on item
function showPerson(){
//console.log('');
let item = reviews[currentItem];
img.src = item.img;
author.textContent = item.name;
job.textContent = item.job;
info.textContent = item.text;
}
//show next person
nextBtn.addEventListener("click",function(){
currentItem++;
if(currentItem > reviews.length-1){
currentItem = 0;
}
showPerson();
});
//show prev person
prevBtn.addEventListener("click",function(){
currentItem--;
if(currentItem < 0){
currentItem = reviews.length - 1;
}
showPerson();
});
//show random person
randomBtn.addEventListener("click",function(){
currentItem = Math.floor(Math.random()*reviews.length);
//console.log(currentItem);
showPerson();
});