-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpopup.html
More file actions
40 lines (38 loc) · 1.41 KB
/
Copy pathpopup.html
File metadata and controls
40 lines (38 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<!-- Telegram群组: https://t.me/htpnu -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>弹窗页面</title>
<link rel="stylesheet" href="src/css/popup.css">
<link rel="stylesheet" href="src/css/particles.css">
<link rel="stylesheet" href="src/css/themes.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* 预加载默认主题背景,避免页面加载时背景变白 */
body.deepsea-theme {
background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%) !important;
}
</style>
</head>
<body class="deepsea-theme">
<!-- 背景粒子效果 -->
<div class="background-animation" id="particles"></div>
<!-- 弹窗容器 -->
<div class="popup-container">
<div class="popup-box">
<div class="popup-header">
<h2 class="popup-title">重要通知</h2>
</div>
<div class="popup-content">
<p class="popup-message">这是一个弹窗通知内容。</p>
</div>
<div class="popup-footer">
<button class="popup-btn" id="popupButton">确定</button>
</div>
</div>
</div>
<script src="src/js/popup.js" type="module"></script>
</body>
</html>