Juhusliku (random) pilti näitamine
Random (juhuslik) pilt
|
|
|
Vastus:
|
function randomPildid() {
const pildid = [
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt2.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt3.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt4.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt5.png’
];
const randompilt = document.getElementById(‘random-pilt’);
const pilt = pildid[Math.floor(Math.random() * pildid.length)];
randompilt.src = pilt;
}
function random2Pildid() {
const pildid = [
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt2.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt3.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt4.png’,
‘https://markosuvorov24.thkit.ee/wp/wp-content/uploads/2025/03/Pilt5.png’
];
const randompilt = document.getElementById(‘random-pilt2’);
const pilt = pildid[Math.floor(Math.random() * pildid.length)];
randompilt.src = pilt;
}
function kontrol() {
let vastus = document.getElementById(‘vastus’);
let randompilt = document.getElementById(‘random-pilt’);
let randompilt2 = document.getElementById(‘random-pilt2’);
if (randompilt.getAttribute(‘src’) == randompilt2.getAttribute(‘src’)) {
vastus.innerHTML = “Pildid on samad!”;
} else {
vastus.innerHTML = “Pildid on erinevad!”;
}
}