<img id="myImg" src="https://laptrinhtudau.com/wp-content/uploads/2022/01/img_lights.jpg" alt="Northern Lights, Norway" width="300" height="200">
<!-- Phương thức -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
<script>
// Lấy phương thức
var modal = document.getElementById('myModal');
// Lấy hình ảnh và chèn nó vào bên trong phương thức - sử dụng văn bản "alt" của nó làm chú thích
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
}
// Lấy phần tử <span> đóng phương thức
var span = document.getElementsByClassName("close")[0];
// Khi người dùng nhấp vào <span> (x), hãy đóng phương thức
span.onclick = function() {
modal.style.display = "none";
}
</script>
#myImg {
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
#myImg:hover {opacity: 0.7;}
/* Phương thức (nền) */
.modal {
display: none; /* Ẩn theo mặc định */
position: fixed; /* Giữ nguyên vị trí */
z-index: 1; /* Nằm trên */
padding-top: 100px; /* Vị trí của hộp */
left: 0;
top: 0;
width: 100%; /* toàn chiều ngang */
height: 100%; /* toàn chiều rộng */
overflow: auto; /* Bật cuộn nếu cần */
background-color: rgb(0,0,0); /* Màu dự phòng */
background-color: rgba(0,0,0,0.9); /* Màu đen với / độ mờ*/
}
/* Nội dung phương thức (hình ảnh) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
/* Chú thích của hình ảnh phương thức */
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* Thêm hoạt ảnh */
.modal-content, #caption {
animation-name: zoom;
animation-duration: 0.6s;
}
@keyframes zoom {
from {transform: scale(0.1)}
to {transform: scale(1)}
}
/* Nút đóng */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
/* 100% chiều rộng hình ảnh trên màn hình nhỏ hơn */
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.