-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
46 lines (43 loc) · 2.55 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="res/css/style.css" />
<title>About</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimal-ui" />
<script src="js/barCtrl.js"></script>
</head>
<body>
<div id="btn-popup"><a href="javascript:window.close()"><img src="res/icons/close.png" alt="关闭" /></a></div>
<div id="pane">
<center>
<img src="res/icons/yD-black-bigger.png" width=56px height=56px /><br />
<b>yDic 你的词典</b><br />
<span id="version">
版本号
<script>document.write(require('./package.json').version);</script> |
使用electron
<script>
document.write(process.versions.electron);
</script>
</span>
<br /><br />
<a href="javascript:require('electron').shell.openExternal(require('./package.json').homepage)"><img
src="res/icons/home.png" width=28px height=28px alt="首页" /></a>
<a
href="javascript:require('electron').shell.openExternal('https://github.com/RoderickQiu/ydic/')"><img
src="res/icons/github.png" width=28px height=28px alt="GitHub页面" /></a>
<a
href="javascript:require('electron').shell.openExternal('https://github.com/RoderickQiu/ydic/issues/')"><img
src="res/icons/bugs.png" width=28px height=28px alt="反馈问题" /></a>
<!-- openExternely=用于在浏览器中打开页面 -->
<a href="javascript:require('electron').shell.openExternal(require('./package.json').helppage)"><img
src="res/icons/help.png" width=28px height=28px alt="帮助手册" /></a>
<br />© <a
href="javascript:require('electron').shell.openExternal('https://roderickqiu.scris.top/')"
class="backLink">Roderick Qiu</a>.
</center>
</div>
</body>
</html>