-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
66 lines (57 loc) · 1.53 KB
/
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
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
const imgContainer = document.getElementById('image-container'),
loader = document.getElementById('loader');
let photosArray = [];
(ready = false), (imagesLoaded = 0), (totalImages = 0);
const count = 20;
const API_URL = `https://api.unsplash.com/photos/random/?client_id=TLM-WdAj9gLURpxVG-3lDtdXiZFv_ZH0l-3r5NQN-TI&count=${count}`;
function imageLoaded() {
imagesLoaded++;
if (imagesLoaded === totalImages) {
ready = true;
loader.hidden = true;
}
}
function attributionSetter(element, attributes) {
for (const key in attributes) {
element.setAttribute(key, attributes[key]);
}
}
function displayPhotos() {
imagesLoaded = 0;
totalImages = photosArray.length;
photosArray.forEach((photo) => {
const item = document.createElement('a');
attributionSetter(item, {
href: photo.links.html,
target: '_blank',
});
const img = document.createElement('img');
attributionSetter(img, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description,
});
img.addEventListener('load', imageLoaded);
item.appendChild(img);
imgContainer.appendChild(item);
});
}
async function getImage() {
try {
const response = await fetch(API_URL);
photosArray = await response.json();
displayPhotos();
} catch (error) {
console.error(error);
}
}
window.addEventListener('scroll', () => {
if (
window.innerHeight + window.scrollY >= document.body.offsetHeight - 1500 &&
ready
) {
ready = false;
getImage();
}
});
getImage();