Modal / 26 ネオンサイバー フルスクリーン|Neon Cyber Fullscreen
デザイン見本
暗いグラデーション背景に、鮮やかなネオングリーン(`#00ff88`)のボーダーと`box-shadow`・`text-shadow`を組み合わせた、サイバーパンク/フューチャリスティックなフルスクリーンモーダルです。
実装コード
HTML
<!-- モーダルを開くボタン -->
<button class="modal-button">Neon Cyber Fullscreen Modal</button>
<!-- モーダルの背景マスク -->
<div class="mask"></div>
<!-- モーダル本体(フルスクリーン対応クラスを追加) -->
<div class="modal fullscreen">
<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>ネオン効果のサイバーパンク風フルスクリーンモーダルです。</p>
<p>ESCキーでも閉じることができます。</p>
<div class="close-btn-container">
<button class="close-btn">CLOSE</button>
</div>
</div>
</div>
</div>
CSS
/* 開くボタンのスタイル */
.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.fullscreen {
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: inset 0 0 50px rgba(0, 255, 136, 0.1), 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;
box-sizing: border-box;
}
.modal.fullscreen.appear {
opacity: 1;
visibility: visible;
}
.modal-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
}
/* 右上が絶対配置で「×」ボタン */
.modal.fullscreen > .modal-content > .close-btn-container {
position: absolute;
top: 20px;
right: 20px;
z-index: 10;
}
.modal.fullscreen > .modal-content > .close-btn-container .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);
}
.modal.fullscreen > .modal-content > .close-btn-container .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;
}
.modal 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);
}
/* 下部の「CLOSE」ボタンスタイル */
.fullscreen-content .close-btn-container {
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;
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);
}
JS
(function () {
var btn = document.querySelector('.modal-button');
var mask = document.querySelector('.mask');
var modal = document.querySelector('.modal');
var closeBtns = document.querySelectorAll('.close-btn');
if (!btn || !mask || !modal) return;
function openModal() {
mask.classList.add('appear');
modal.classList.add('appear');
if (modal.classList.contains('fullscreen')) {
document.body.style.overflow = 'hidden';
}
}
function closeModal() {
mask.classList.remove('appear');
modal.classList.remove('appear');
if (modal.classList.contains('fullscreen')) {
document.body.style.overflow = '';
}
}
btn.addEventListener('click', openModal);
mask.addEventListener('click', closeModal);
closeBtns.forEach(function(b) { b.addEventListener('click', closeModal); });
document.addEventListener('keydown', function (e) {
if (e.key === 'Escape' && modal.classList.contains('appear')) {
closeModal();
}
});
})();