-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (91 loc) · 2.81 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="iscanner demo" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
name="viewport" />
<title>iScanner - An easy-to-use scanner.</title>
<link rel="shortcut icon" href="images/icon.png" type="image/x-icon" />
<link rel="stylesheet" href="stylesheet/iscanner.css" />
<style>
.github-ribbon {
position: absolute;
right: 0px;
top: 0px;
width: 150px;
height: 150px;
overflow: hidden;
z-index: 99999;
}
.github-ribbon a {
display: inline-block;
width: 200px;
overflow: hidden;
padding: 6px 0px;
text-align: center;
transform: rotate(45deg);
text-decoration: none;
color: rgb(255, 255, 255);
position: inherit;
top: 45px;
right: -40px;
border-width: 1px 0px;
border-style: dotted;
border-color: rgba(255, 255, 255, 0.7);
font-style: normal;
font-variant-ligatures: normal;
font-variant-caps: normal;
font-weight: 700;
font-stretch: normal;
font-size: 13px;
line-height: normal;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 3px 0px;
background-color: rgb(170, 0, 0);
}
</style>
</head>
<body>
<div class="github-ribbon">
<a target="_blank" href="https://github.com/iscanner/">Fork me on GitHub</a>
</div>
<div class="content">
<div class="logo">
</div>
<div class="app-name">
iScanner
</div>
<div class="app-slogan">
Fast exact and light scanner.
</div>
<div class="download" id="download">
<div class="btn-container">
<a href="https://itunes.apple.com/us/app/easyscanner/id962711541?l=zh&ls=1&mt=8">
<div class="btn iphone">
<span class="label">iPhone</span>
<span class="version">Version:<b id="ios_version"></b></span>
</div>
</a>
</div>
<div class="btn-container">
<a href="//npmcdn.com/iscanner_android@latest/app/build/outputs/apk/debug/app-debug.apk">
<div class="btn android">
<span class="label">Android</span>
<span class="version">Version:<b id="android_version"></b></span>
</div>
</a>
</div>
</div>
<div class="unsupport-container" id="unsupport" style="display:none">
<div class="tip-title">
检测到您在用微信,无法直接下载
</div>
<div class="tip-title">
请点击右上角,选择“在浏览器中打开”
</div>
</div>
</div>
<script src="javascript/iscanner.js"></script>
</body>
</html>