Elige una Carta
Elige la carta que más resuene contigo y descubre el mensaje que el universo tiene para guiarte.🌟
¿Qué carta llama tu atención? 💫
var myArray = [
{ id: '0', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/1.-El-loco.png' },
{ id: '1', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/2.-El-mago.png' },
{ id: '2', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/6-the-high-priestess.png' },
{ id: '3', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/3.-the-empress.png' },
{ id: '4', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/4.-the-emperor.png' },
{ id: '5', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/5-the-heirophant.png' },
{ id: '6', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/7-the-lovers.png' },
{ id: '7', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/8-the-chariot.png' },
{ id: '8', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/9-strength.png' },
{ id: '9', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/10-el-ermitano.png' },
{ id: '10', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/11-wheel-of-fortune.png' },
{ id: '11', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/12-Justice.png' },
{ id: '12', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/13-the-hanged-man.png' },
{ id: '13', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/14-death.png' },
{ id: '14', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/15-temperance.png' },
{ id: '15', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/16-the-devil.png' },
{ id: '16', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/17-the-tower.png' },
{ id: '17', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/18-The-star.png' },
{ id: '18', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/19-the-moon.png' },
{ id: '19', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/20-the-sun.png' },
{ id: '20', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/21-judgement.png' },
{ id: '21', imgSource: 'https://www.magiadelinterior.com/wp-content/uploads/2025/01/22-the-world.png' }
];
function getRandomIndex(max) {
return Math.floor(Math.random() * max);
}
function updateCardsAndButtons() {
for (let i = 0; i < 3; i++) {
// Genera un índice aleatorio
let randomId = Math.floor(Math.random() * myArray.length);
// Actualiza el background-image del card correspondiente
let cardElement = document.getElementById(`card-0${i}`);
if (cardElement) {
cardElement.style.backgroundImage = `url('${myArray[randomId].imgSource}')`;
cardElement.style.backgroundSize = 'cover';
}
// Actualiza el enlace del contenedor
let anchorElement = cardElement.querySelector('a');
if (anchorElement) {
anchorElement.setAttribute('href', `https://www.magiadelinterior.com/resultado/?index=${randomId}`);
}
}
}
window.onload = updateCardsAndButtons;

