Modal / 24 グラデーションフルスクリーン|Gradient Fullscreen
デザイン見本
全面に色鮮やかなグラデーション(`linear-gradient`)を敷き詰めたフルスクリーンモーダルです。ボタンなどのパーツに半透明の白(`rgba(255, 255, 255, 0.2)`)と`backdrop-filter: blur()`を用いることで、背景の色合いを活かしています。
実装コード
HTML
<!-- モーダルを開くボタン -->
<button class="modal-button">Gradient 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>【Gradient 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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.modal-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
/* 背景マスクのスタイル */
.mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
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, #f093fb 0%, #f5576c 50%, #4facfe 100%);
z-index: 1001;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.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(255, 255, 255, 0.2);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
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;
backdrop-filter: blur(10px);
}
.modal.fullscreen > .modal-content > .close-btn-container .close-btn:hover {
background: rgba(255, 255, 255, 0.3);
border-color: rgba(255, 255, 255, 0.5);
transform: scale(1.1);
}
/* モーダルコンテンツ中央揃え */
.fullscreen-content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 40px;
text-align: center;
}
.modal p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 20px;
max-width: 600px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
/* 下部の「CLOSE」ボタンスタイル */
.fullscreen-content .close-btn-container {
margin-top: 30px;
}
.fullscreen-content .close-btn {
padding: 12px 30px;
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 25px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
backdrop-filter: blur(10px);
min-width: 120px;
}
.fullscreen-content .close-btn:hover {
background: rgba(255, 255, 255, 0.3);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
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();
}
});
})();