-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
68 lines (58 loc) · 1.64 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
67
68
// Unsplash API
const imageContainer = document.getElementById("image-container")
var photoArray = []
const apiKey = 'KAHykfn2KRI8nSk8Gkxoz8oCvmqzIFI4BkFrBm5k_Dw'
const count = 10
const apiUrl = `https://api.unsplash.com/photos/random?client_id=${apiKey}&count=${count}`
let ready = false;
let imagesLoaded = 0;
let totalImages = 0;
function setAttributes(element, attributes){
for(const key in attributes){
element.setAttribute(key, attributes[key])
}
}
function imageLoaded(){
console.log('image loaded')
imagesLoaded++;
if(imagesLoaded === totalImages){
ready = true;
loader.hidden = ready;
}
}
function displayPhotos(){
imagesLoaded = 0;
totalImages = photoArray.length;
photoArray.forEach((photo) => {
const item = document.createElement('a')
setAttributes(item, {
href: photo.links.html,
target: '_blank'
})
const image = document.createElement('img')
image.addEventListener('load', imageLoaded)
setAttributes(image, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description
})
item.appendChild(image)
imageContainer.appendChild(item)
});
}
async function getPhotos(){
try{
const response = await fetch(apiUrl)
photoArray = await response.json()
displayPhotos();
} catch(error) {
console.log(error)
}
}
window.addEventListener('scroll', () => {
if(window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000){
getPhotos();
console.log('get photos')
}
})
getPhotos()