-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
89 lines (84 loc) · 3.6 KB
/
script.js
File metadata and controls
89 lines (84 loc) · 3.6 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
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
88
89
const Reviews = [
{
id: 1,
img: "https://images.pexels.com/photos/3748221/pexels-photo-3748221.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
author: "James",
job: "Intern",
text: "i use it daily when i'm in my courthouse.My raven loves to play with it.talk about irritation.This developer works outstandingly well. It grudgingly improves my baseball by a lot.",
},
{
id: 2,
img: "https://images.pexels.com/photos/5704720/pexels-photo-5704720.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
author: "Monica",
job: "Developer",
text: "one of my hobbies is theater. and when i'm acting this works great.My terrier loves to play with it.i use it every Tuesday when i'm in my homeless shelter.I saw one of these in South Korea and I bought one.",
},
{
id: 3,
img: "https://images.pexels.com/photos/837358/pexels-photo-837358.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
author: "Ross",
job: "Manager",
text: "this developer is honest.I saw one of these in Vanuatu and I bought one.heard about this on balearic beat radio, decided to give it a try.one of my hobbies is poetry. and when i'm writing poems this works great.",
},
{
id: 4,
img: "https://images.pexels.com/photos/1526814/pexels-photo-1526814.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
author: "Rachel",
job: "Waitress",
text: "i use it on Mondays when i'm in my fort.My neighbor Lori has one of these. She works as a taxidermist and she says it looks whopping.one of my hobbies is poetry. and when i'm writing poems this works great.one of my hobbies is theater. and when i'm acting this works great.",
},
{
id: 5,
img: "https://images.pexels.com/photos/428321/pexels-photo-428321.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
author: "Janice",
job: "Marketing",
text: "My penguin loves to play with it.This developer works very well. It persistently improves my soccer by a lot.heard about this on gypsy jazz radio, decided to give it a try.this developer is light-hearted.",
},
{
id: 6,
img: "https://images.pexels.com/photos/874158/pexels-photo-874158.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
author: "Joey",
job: "Actor",
text: "My peacock loves to play with it.one of my hobbies is skydiving. and when i'm skydiving this works great.talk about optimism!!!The box this comes in is 5 kilometer by 6 yard and weights 18 gram.",
},
];
const img = document.getElementById("img");
const author = document.getElementById("author");
const job = document.getElementById("job");
const review = document.getElementById("review");
const leftBtn = document.querySelector(".left-btn");
const rightBtn = document.querySelector(".right-btn");
const randomBtn = document.querySelector(".random");
let currentItem = 0;
window.addEventListener("DOMContentLoaded", function () {
let item = Reviews[currentItem];
img.src = item.img;
author.textContent = item.author;
job.textContent = item.job;
review.textContent = item.text;
});
function showPerson(person) {
let item = Reviews[person];
img.src = item.img;
author.textContent = item.author;
job.textContent = item.job;
review.textContent = item.text;
}
leftBtn.addEventListener("click", function () {
currentItem--;
if (currentItem < 0) {
currentItem = Reviews.length - 1;
}
showPerson(currentItem);
});
rightBtn.addEventListener("click", function () {
currentItem++;
if (currentItem > Reviews.length - 1) {
currentItem = 0;
}
showPerson(currentItem);
});
randomBtn.addEventListener("click", function () {
currentItem = Math.floor(Math.random() * Reviews.length);
showPerson(currentItem);
});