mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 05:25:36 +07:00
108 lines
2.2 KiB
Vue
108 lines
2.2 KiB
Vue
<script setup>
|
|
defineProps({
|
|
show: Boolean,
|
|
title: String
|
|
})
|
|
|
|
defineEmits(['close'])
|
|
</script>
|
|
|
|
<template>
|
|
<Transition name="modal">
|
|
<div v-if="show" class="modal-mask" @click.self="$emit('close')">
|
|
<div class="modal-container glass-panel">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title">{{ title }}</h3>
|
|
<button class="close-btn" @click="$emit('close')">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="modal-body custom-scrollbar">
|
|
<slot name="body">Default body</slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Transition>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.modal-mask {
|
|
position: fixed;
|
|
z-index: 9998;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
backdrop-filter: blur(4px);
|
|
display: flex;
|
|
transition: opacity 0.3s ease;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.modal-container {
|
|
width: 100%;
|
|
max-width: 800px;
|
|
max-height: 85vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--vp-c-bg);
|
|
border-radius: 12px;
|
|
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease;
|
|
border: 1px solid var(--vp-c-divider);
|
|
}
|
|
|
|
.modal-header {
|
|
padding: 16px 24px;
|
|
border-bottom: 1px solid var(--vp-c-divider);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal-title {
|
|
margin: 0;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.close-btn {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: var(--vp-c-text-2);
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.close-btn:hover {
|
|
background-color: var(--vp-c-bg-alt);
|
|
color: var(--vp-c-text-1);
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 24px;
|
|
overflow-y: auto;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Transitions */
|
|
.modal-enter-from {
|
|
opacity: 0;
|
|
}
|
|
|
|
.modal-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.modal-enter-from .modal-container,
|
|
.modal-leave-to .modal-container {
|
|
transform: scale(0.95);
|
|
opacity: 0;
|
|
}
|
|
</style>
|