Description




















































































function ouvrirLightbox(src) { var lightbox = document.createElement('div'); lightbox.style.display = 'flex'; lightbox.style.justifyContent = 'center'; lightbox.style.alignItems = 'center'; lightbox.style.position = 'fixed'; lightbox.style.top = '0'; lightbox.style.right = '0'; lightbox.style.bottom = '0'; lightbox.style.left = '0'; lightbox.style.backgroundColor = 'rgba(0, 0, 0, 0.7)'; lightbox.style.zIndex = '9999'; lightbox.onclick = function() { document.body.removeChild(lightbox); } var img = document.createElement('img'); img.src = src; img.style.maxWidth = '80%'; img.style.maxHeight = '80%'; lightbox.appendChild(img); document.body.appendChild(lightbox); }