-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsimple.html
More file actions
74 lines (74 loc) · 3.5 KB
/
Copy pathsimple.html
File metadata and controls
74 lines (74 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Random Name Picker [SIMPLE]</title>
<script src="./javascript/sober@0.4.2.min.js"></script>
<link rel="icon" href="./favicon.ico"></link>
<link rel="stylesheet" href="./res/DIN/font.css" />
<link rel="stylesheet" href="./res/hanyi/font.css" />
<link rel="stylesheet" href="./res/MiSans/font.css" />
<link rel="stylesheet" href="./css/soberjs_ui.css">
<link rel="stylesheet" href="./css/simple.css">
</head>
<body>
<s-page theme="auto" class="page_root" id="page_root">
<s-appbar id="appbar">
<!--左侧菜单按钮-->
<s-icon-button id="sidebar_toggle_btn" type="outlined" slot="navigation">
<s-icon><img src="./res/svg/history.svg"></img></s-icon>
</s-icon-button>
<!--标题-->
<div slot="headline" id="UIt" style="">Random Name Picker [Simple]</div>
<!--右侧按钮-->
<div id="startButtonTips" style="display:none;"></div>
<div id="startGuidancePrompt" style="display:none;"></div>
<s-icon-button type="filled-tonal" id="start" slot="action">
<s-icon><img src="./res/svg/go.svg"></img></s-icon>
<s-badge slot="badge">1</s-badge>
</s-icon-button>
<s-icon-button type="filled-tonal" id="start3" slot="action">
<s-icon><img src="./res/svg/go.svg"></img></s-icon>
<s-badge slot="badge">3</s-badge>
</s-icon-button>
<s-icon-button type="filled-tonal" id="start5" slot="action">
<s-icon><img src="./res/svg/go.svg"></img></s-icon>
<s-badge slot="badge">5</s-badge>
</s-icon-button>
</s-appbar>
<s-drawer id="sidebar" style="height: 731px;">
<div id="sidebar_left_parent" slot="start">
<s-scroll-view style="max-height:100%;">
<div id="sidebar_left" style="padding:5px 5px 5px 5px;">
<!--左侧边栏内容-->
<s-card type="" class="sidebar_head">
<p id="history_display" style="padding:0px 5px 5px 5px;"></p>
<s-chip id="resetHistoryBtn" type="outlined" clickable="true"><s-icon slot="start"><img src="./res/svg/reset.svg" /></s-icon>重置历史记录</s-chip>
</s-card>
<s-card type="" class="sidebar_head">
<div id="saying" class="selectable">
<p><center>This website is powered by <a href="https://github.com/kdxhub/random_name_picker">kdxiaoyi/random_name_picker</a>.
<br>Licensed as AGPL-3.0.
<br><a href="./">StarRail Theme</a> | <a href="./config-spawn.html">配置文件生成器</a></center></p>
</div>
</div>
</s-card>
</div>
</s-scroll-view>
</div>
<div>
<s-scroll-view id="contentScroll" style="max-height:100%;">
<div id="contentBG" class="selectable" style="width:100vw;min-height:90%">
<div id="no_script"><h3><b><center>E07:由于您似乎禁用了Javascript或者出于其它原因,页面无法正常加载。<br>此外,该应用不兼容IE系浏览器。</center></b></h3></div>
<center><s-linear-progress id="cooldown" style="visibility:hidden;" value="0" max="3000" -animated="true"></s-linear-progress></center>
<center><p id="main-loadedList"></p></center>
<center><big><p id="result"><i>就绪……</i></p></big></center>
</div>
</s-scroll-view>
</div>
</s-drawer>
</s-page>
<script id="listJs" src=""></script>
<script src="./javascript/simple.js"></script>
</body>
</html>