-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapod.js
27 lines (24 loc) · 978 Bytes
/
apod.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
const img = document.querySelector(".picture");
const title = document.querySelector(".title");
const explanation = document.querySelector(".explanation");
const capturedate = document.querySelector(".capturedate");
const copyright = document.querySelector(".copyright");
let date, start = Date.parse('2021-01-01'),
end = new Date();
end.setDate(end.getDate() - 1);
const getDate = () => {
date = new Date(Math.floor(Math.random() * (end - start + 1) + start)).toISOString().split('T')[0];
return date
};
fetch(`https://api.nasa.gov/planetary/apod?api_key=5EuMwVp973fgjxKrLD80Wo2ptgcUbRT9guB53fQM&start_date=${getDate()}&end_date=${date}`)
.then(response => response.json())
.then(data => {
img.src = data[0].url
title.innerText = data[0].title
explanation.innerText = data[0].explanation
capturedate.innerText = data[0].date
copyright.innerText = "Image Copyright by @ " + data[0].copyright
})
function nextimg(){
window.location.reload();
}