Перейти к содержимому
Главная
Прикладная информатика
Учебные задания
Web-программирование
HTML
JS
PHP
Новости
Меню навигации
Меню навигации
Главная
Прикладная информатика
Учебные задания
Web-программирование
HTML
JS
PHP
Новости
×
function showPopup(title, description) { document.getElementById('popup-title').innerText = title; document.getElementById('popup-description').innerText = description; document.getElementById('popup').style.display = 'flex'; } function closePopup() { document.getElementById('popup').style.display = 'none'; }
body { font-family: Arial, sans-serif; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; } .image-container { position: relative; margin: 20px; } img { width: 300px; height: 200px; object-fit: cover; cursor: pointer; border: 2px solid #333; border-radius: 8px; } .popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); justify-content: center; align-items: center; z-index: 1000; } .popup-content { background: #fff; padding: 20px; border-radius: 10px; text-align: center; } .close { cursor: pointer; color: red; font-weight: bold; }
Results:
×