|
|
|
Vastus:
|
function randomPildid() {
//massive
const pildid=[
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt1.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt2.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt3.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt4.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pil5.png’
];
const randompilt=document.getElementById(‘random-pilt’);
//math.random – randomnoe chislo
//math.floor – tseloe chislo
//.length – dlina
const pilt=pildid[Math.floor(Math.random()*pildid.length)];
randompilt.src=pilt;
}
function randomPildid2() {
//massive
const pildid=[
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt1.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt2.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt3.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pilt4.png’,
‘https://sofiyavertsyukh24.thkit.ee/wp/wp-content/uploads/2025/03/pil5.png’
];
const randompilt2=document.getElementById(‘random-pilt2’);
//math.random – randomnoe chislo
//math.floor – tseloe chislo
//.length – dlina
const pilt2=pildid[Math.floor(Math.random()*pildid.length)];
randompilt2.src=pilt2;
}
function kontroll() {
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!”;
}
}