Dành cho Nữ
8.750.000₫
8.750.000₫
8.750.000₫
8.750.000₫
-56%
349.000₫ -56% 799.000₫
-53%
649.000₫ -53% 1.390.000₫
Dành cho Nam
PHƯỚC HẢI VÀ BLANDA VINH DỰ NHẬN ĐƯỢC CÁC GIẢI THƯỞNG
Sản phẩm công nghiệp và công nghiệp hỗ trợ tiêu biểu 2024
Thương hiệu mạnh quốc gia 2025
/* CSS: Giao diện và hiệu ứng */
.popup-overlay {
display: none; /* Mặc định ẩn */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Làm tối nền */
z-index: 9999; /* Luôn hiển thị trên cùng */
justify-content: center;
align-items: center;
}
.popup-content {
position: relative;
max-width: 90%;
width: 500px;
animation: zoomIn 0.3s ease-out; /* Hiệu ứng hiện ra */
}
.popup-content img {
width: 100%;
border-radius: 8px;
display: block;
}
.close-btn {
position: absolute;
top: -15px;
right: -15px;
background: #ff0000;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
line-height: 30px;
cursor: pointer;
font-size: 20px;
font-weight: bold;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
@keyframes zoomIn {
from { transform: scale(0.7); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
// JavaScript: Điều khiển hiển thị
window.onload = function() {
// Hiển thị popup sau 1 giây khi trang tải xong
setTimeout(function() {
document.getElementById(“imagePopup”).style.display = “flex”;
}, 1000);
};
function closePopup() {
document.getElementById(“imagePopup”).style.display = “none”;
}
// Đóng popup khi nhấn ra ngoài vùng ảnh
window.onclick = function(event) {
let overlay = document.getElementById(“imagePopup”);
if (event.target == overlay) {
overlay.style.display = “none”;
}
}