モーダルウィンドウ:ネオンサイバー(フルスクリーン)|Modal Window: Neon Cyber Fullscreen
[Neon Cyber Fullscreen Modal]
A cyberpunk-style fullscreen modal with neon effects and glowing borders. Features electric colors and futuristic design elements.
Perfect for gaming interfaces, tech applications, or any project that needs a bold, high-tech aesthetic.
You can also close with the ESC key.
HTML
<div class="container">
<button id="modal-btn" class="modal-button">Neon Cyber Fullscreen Modal</button>
</div>
<div id="mask" class="mask"></div>
<div id="modal" class="modal">
<div class="modal-content">
<div class="close-btn-container">
<button class="close-btn">×</button>
</div>
<div class="fullscreen-content">
<p>[Neon Cyber Fullscreen Modal]</p>
<p>A cyberpunk-style fullscreen modal with neon effects and glowing borders. Features electric colors and futuristic design elements.</p>
<p>Perfect for gaming interfaces, tech applications, or any project that needs a bold, high-tech aesthetic.</p>
<p>You can also close with the ESC key.</p>
<div class="close-btn-container">
<button class="close-btn">CLOSE</button>
</div>
</div>
</div>
</div>
CSS
.container {
text-align: center;
}
.modal-button {
padding: 15px 30px;
background: #0a0a0a;
color: #00ff88;
border: 2px solid #00ff88;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
text-transform: uppercase;
letter-spacing: 1px;
}
.modal-button:hover {
background: #00ff88;
color: #0a0a0a;
transform: translateY(-2px);
box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}
.mask {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.9);
z-index: 1000;
opacity: 0; visibility: hidden;
transition: all 0.3s ease;
}
.mask.appear {
opacity: 1; visibility: visible;
}
.modal {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
border: 2px solid #00ff88;
box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
z-index: 1001;
opacity: 0; visibility: hidden;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.modal.appear {
opacity: 1; visibility: visible;
}
.modal-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
}
.close-btn-container {
position: absolute;
top: 20px;
right: 20px;
z-index: 10;
}
.close-btn {
width: 40px;
height: 40px;
background: rgba(0, 255, 136, 0.1);
color: #00ff88;
border: 2px solid #00ff88;
border-radius: 50%;
font-size: 24px;
font-weight: 300;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}
.close-btn:hover {
background: #00ff88;
color: #0a0a0a;
transform: scale(1.1);
box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}
.fullscreen-content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 40px;
text-align: center;
}
.fullscreen-content p {
color: #00ff88;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 20px;
max-width: 600px;
text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.fullscreen-content .close-btn-container {
position: static;
margin-top: 30px;
}
.fullscreen-content .close-btn {
padding: 12px 30px;
background: rgba(0, 255, 136, 0.1);
color: #00ff88;
border: 2px solid #00ff88;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
width: auto;
height: auto;
line-height: 1.2;
white-space: nowrap;
min-width: 120px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}
.fullscreen-content .close-btn:hover {
background: #00ff88;
color: #0a0a0a;
transform: translateY(-2px);
box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}
@media (max-width: 768px) {
.fullscreen-content {
padding: 40px 20px;
}
.fullscreen-content p {
font-size: 1rem;
}
}
JavaScript
document.addEventListener('DOMContentLoaded', function() {
const modalBtn = document.getElementById('modal-btn');
const mask = document.getElementById('mask');
const modal = document.getElementById('modal');
const closeBtns = document.querySelectorAll('.close-btn');
// モーダルを開く
modalBtn.addEventListener('click', () => {
mask.classList.add('appear');
modal.classList.add('appear');
document.body.style.overflow = 'hidden';
});
// モーダルを閉じる関数
const closeModal = () => {
mask.classList.remove('appear');
modal.classList.remove('appear');
document.body.style.overflow = 'auto';
};
// マスククリックで閉じる
mask.addEventListener('click', closeModal);
// 閉じるボタンで閉じる
closeBtns.forEach(btn => {
btn.addEventListener('click', closeModal);
});
// ESCキーで閉じる
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape' && modal.classList.contains('appear')) {
closeModal();
}
});
});