-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
46 lines (36 loc) · 1.2 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
const accessKey = "privateaccesskey";
const searchForm = document.querySelector('#search-form')
const searchBox = document.querySelector('#search-box')
const searchResult = document.querySelector('#search-result')
const btn = document.querySelector('#btn')
let keyword = "";
let page = 1;
async function searchImages(){
keyword = searchBox.value;
const url = `https://api.unsplash.com/search/photos?page=${page}&query=${keyword}&client_id=${accessKey}&per_page=12`;
const response = await fetch(url);
const data = await response.json();
if(page === 1){
searchResult.innerHTML = "";
}
const results = data.results;
results.map((result)=>{
const image = document.createElement('img');
image.src = result.urls.small;
const imageLink = document.createElement("a");
imageLink.href = result.links.html;
imageLink.target = "_blank";
imageLink.appendChild(image);
searchResult.appendChild(imageLink);
})
btn.style.display = "block";
}
searchForm.addEventListener("submit", (e)=>{
e.preventDefault();
page = 1;
searchImages();
});
btn.addEventListener('click',function(e){
page++;
searchImages();
})