Hi, I’m making a button that when I press it, a panel appears and images with descriptions appear below but this appears:
this code I’m using:
AFRAME.registerComponent('custom-panel', {
init: function () {
this.panel = document.createElement('div');
this.panel.id = 'my-custom-panel';
this.panel.style.position = 'fixed';
this.panel.style.top = '0';
this.panel.style.left = '0';
this.panel.style.width = '100vw';
this.panel.style.height = '100vh';
this.panel.style.background = 'rgba(101, 78, 163, 1)';
this.panel.style.color = 'white';
this.panel.style.padding = '20px';
this.panel.style.display = 'none';
this.panel.style.zIndex = '9999';
this.panel.innerHTML = `
<div style="overflow-y: auto; height: 90%; margin: 5%;">
<h2 style="text-align: center;">Galeria</h2>
<div style="margin-bottom: 20px;">
<img src="assets/tesla-mini.jpg" alt="Tesla" style="max-width: calc(100% - 40px); height: auto; display: block; margin: 10px auto;">
<p style="text-align: center;">Sofá Retrátil</p>
</div>
<div style="margin-bottom: 20px;">
<img src="assets/tesla-mini.jpg" alt="Sofá Retrátil" style="max-width: calc(100% - 40px); height: auto; display: block; margin: 10px auto;">
<p style="text-align: center;">Sofá Retrátil</p>
</div>
<!-- Mais imagens e descrições conforme necessário -->
</div>
`;
var button = document.createElement('button');
button.innerText = 'Quais são os Sofas Retráteis?';
button.style.position = 'fixed';
button.style.top = '20px';
button.style.right = '20px';
button.style.zIndex = '10000';
document.body.appendChild(button);
document.body.appendChild(this.panel);
button.onmouseover = function() {
this.style.transform = 'scale(1.1)';
};
button.onmouseout = function() {
this.style.transform = 'scale(1)';
};
this.panel.onmouseover = null;
this.panel.onmouseout = null;
button.addEventListener('click', () => {
if (this.panel.style.display === 'none') {
this.panel.style.display = 'block'; // Mostra o painel
button.innerText = 'Voltar para experiĂŞncia AR!'
} else {
this.panel.style.display = 'none';
button.innerText = 'Quais são os Sofas Retráteis?'
}
});
}
});