mirror of
https://github.com/Kakune55/PyGetGPT.git
synced 2025-05-06 18:29:24 +08:00
添加了 公告模态框
This commit is contained in:
parent
64f58ab5ec
commit
c10d5d6ff8
@ -5,10 +5,13 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
backdrop-filter: blur(8px); /* 模糊度可以根据需要调整 */
|
backdrop-filter: blur(8px);
|
||||||
|
/* 模糊度可以根据需要调整 */
|
||||||
transition: display;
|
transition: display;
|
||||||
z-index: 1; /* 保证遮罩在页面上方 */
|
z-index: 1;
|
||||||
pointer-events: none; /* 确保遮罩不影响下方元素的交互 */
|
/* 保证遮罩在页面上方 */
|
||||||
|
pointer-events: none;
|
||||||
|
/* 确保遮罩不影响下方元素的交互 */
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.3s ease
|
transition: opacity 0.3s ease
|
||||||
}
|
}
|
||||||
@ -120,3 +123,49 @@
|
|||||||
transition: width 0.3s linear;
|
transition: width 0.3s linear;
|
||||||
/* 添加进度条宽度变化的线性过渡效果 */
|
/* 添加进度条宽度变化的线性过渡效果 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* --------------公告栏部分-------------- */
|
||||||
|
|
||||||
|
/* 模态框样式 */
|
||||||
|
.modal {
|
||||||
|
display: none;
|
||||||
|
/* 默认隐藏 */
|
||||||
|
position: fixed;
|
||||||
|
/* 固定位置 */
|
||||||
|
z-index: 1;
|
||||||
|
/* 位于顶层 */
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
/* 宽度为全屏 */
|
||||||
|
height: 100%;
|
||||||
|
/* 高度为全屏 */
|
||||||
|
overflow: auto;
|
||||||
|
/* 如果需要滚动条,则启用 */
|
||||||
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
|
/* 半透明背景 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 模态框内容样式 */
|
||||||
|
.modal-content {
|
||||||
|
background-color: #fefefe;
|
||||||
|
margin: 15% auto;
|
||||||
|
/* 位于页面中心 */
|
||||||
|
padding: 20px;
|
||||||
|
border: 1px solid #888;
|
||||||
|
width: 80%;
|
||||||
|
/* 宽度 */
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content button {
|
||||||
|
display: flex;
|
||||||
|
left: 20px;
|
||||||
|
background-color: #007bff;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 10px 20px;
|
||||||
|
margin-top: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
@ -52,7 +52,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="popup-container" class="hidden"> <!--菜单部分-->
|
<div id="popup-container"> <!--菜单部分-->
|
||||||
<div style="padding: 20px;">
|
<div style="padding: 20px;">
|
||||||
<button id="close-popup">关闭</button>
|
<button id="close-popup">关闭</button>
|
||||||
<h1>设置</h1>
|
<h1>设置</h1>
|
||||||
@ -76,6 +76,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 公告模态框 -->
|
||||||
|
<div id="announcementModal" class="modal">
|
||||||
|
<!-- 模态框内容 -->
|
||||||
|
<div class="modal-content">
|
||||||
|
<h2>公告标题</h2>
|
||||||
|
<p id="modal-text">这里是公告内容。</p>
|
||||||
|
<button id="closeModel">确定公告</button>
|
||||||
|
<input id="dontShowNextTime" type="checkbox"><label>有新消息前不再显示</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<script src="../static/popupMessagesBox.js"></script>
|
<script src="../static/popupMessagesBox.js"></script>
|
||||||
<script>
|
<script>
|
||||||
const chatMessages = document.getElementById('chat-messages'); // 聊天消息容器
|
const chatMessages = document.getElementById('chat-messages'); // 聊天消息容器
|
||||||
|
Loading…
x
Reference in New Issue
Block a user