-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (69 loc) · 3.31 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FuzzyEra Softworks - App 支持中心</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
padding: 20px;
text-align: center;
}
h1 { color: #333; }
p { color: #666; }
.container { max-width: 600px; margin: 0 auto; }
.lang-switch {
margin-top: 20px;
}
.lang-switch a {
margin: 0 10px;
text-decoration: none;
font-weight: bold;
color: #007bff;
}
.hidden { display: none; }
</style>
</head>
<body>
<div class="container">
<h1 id="title-cn">欢迎来到「模糊纪元软件工作室」的支持页面</h1>
<h1 id="title-en" class="hidden">Welcome to FuzzyEra Softworks Support Page</h1>
<h1 id="title-tw" class="hidden">歡迎來到 「模糊紀元軟體工作室」 的支援頁面</h1>
<p id="text-cn">
感谢您使用我的应用!您的支持是我前进的动力。如果在使用过程中遇到任何问题,欢迎随时与我联系。<br><br>
📧 电子邮件:<a href="mailto:[email protected]">[email protected]</a><br><br>
我珍视每一位用户的反馈,并会尽快回复您的问题。再次感谢您的支持!
</p>
<p id="text-en" class="hidden">
Thank you for using my app! Your support is what keeps me going. If you encounter any issues or have any questions, feel free to reach out to me.<br><br>
📧 Email: <a href="mailto:[email protected]">[email protected]</a><br><br>
I appreciate every piece of feedback and will get back to you as soon as possible. Thank you again for your support!
</p>
<p id="text-tw" class="hidden">
感謝您使用我的應用程式!您的支持是我前進的動力。如果在使用過程中遇到任何問題,歡迎隨時與我聯繫。<br><br>
📧 電子郵件:<a href="mailto:[email protected]">[email protected]</a><br><br>
我珍視每一位用戶的回饋,並會儘快回覆您的問題。再次感謝您的支持!
</p>
<div class="lang-switch">
🌐 选择语言 | Select Language | 選擇語言:
<a href="#" onclick="switchLang('cn')">简体中文</a> |
<a href="#" onclick="switchLang('en')">English</a> |
<a href="#" onclick="switchLang('tw')">繁體中文</a>
</div>
</div>
<script>
function switchLang(lang) {
document.getElementById('title-cn').classList.add('hidden');
document.getElementById('title-en').classList.add('hidden');
document.getElementById('title-tw').classList.add('hidden');
document.getElementById('text-cn').classList.add('hidden');
document.getElementById('text-en').classList.add('hidden');
document.getElementById('text-tw').classList.add('hidden');
document.getElementById('title-' + lang).classList.remove('hidden');
document.getElementById('text-' + lang).classList.remove('hidden');
}
</script>
</body>
</html>