17 lines
445 B
JavaScript
17 lines
445 B
JavaScript
|
const container = document.querySelector('.container')
|
||
|
const unsplashURL = 'https://source.unsplash.com/random/'
|
||
|
const rows = 5
|
||
|
|
||
|
for(let i = 0; i < rows * 3; i++) {
|
||
|
const img = document.createElement('img')
|
||
|
img.src = `${unsplashURL}${getRandomSize()}`
|
||
|
container.appendChild(img)
|
||
|
}
|
||
|
|
||
|
function getRandomSize() {
|
||
|
return `${getRandomNr()}x${getRandomNr()}`
|
||
|
}
|
||
|
|
||
|
function getRandomNr() {
|
||
|
return Math.floor(Math.random() * 10) + 300
|
||
|
}
|