-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfl.y_private_assistant.html
More file actions
84 lines (73 loc) · 2.41 KB
/
fl.y_private_assistant.html
File metadata and controls
84 lines (73 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>页面跳转</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
height: 100vh;
}
#topSection {
background-color: #FFD700; /* Yellow color for top section */
flex: 0.15;
display: flex;
align-items: center;
justify-content: center;
}
#middleSection {
background: linear-gradient(to right, #E8E8E8, #FFFFFF); /* Slightly darker white gradient for middle section */
flex: 0.65;
display: flex;
align-items: center;
justify-content: center;
}
#middleSection button {
background-color: #FFFFFF; /* White color for buttons */
padding: 10px 20px;
font-size: 16px;
margin: 10px;
cursor: pointer;
border: none;
border-radius: 8px;
box-shadow: 2px 2px 4px #000000; /* Black shadow effect */
transition: background 0.3s ease; /* Smooth transition effect */
outline: none;
}
#middleSection button:hover {
background-color: #F0F0F0; /* Lighter white color on hover */
}
#bottomSection {
background-color: #2F2F2F; /* Dark gray color for bottom section */
flex: 0.20;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div id="topSection">
<h1>欢迎来到fl.y私人小助手~</h1>
</div>
<div id="middleSection">
<button onclick="redirectToPage1()">文件小助手</button>
<button onclick="redirectToPage2()">图文小助手</button>
</div>
<div id="bottomSection">
<!-- Content for the bottom section if needed -->
</div>
<script>
function redirectToPage1() {
window.location.href = 'https://udify.app/chat/E1By7KPCpd89GaMC';
}
function redirectToPage2() {
window.location.href = 'https://huggingface.co/spaces/LinkSoul/Chinese-LLaVa';
}
</script>
</body>
</html>