-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathinfo.html
More file actions
79 lines (73 loc) · 2.05 KB
/
info.html
File metadata and controls
79 lines (73 loc) · 2.05 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
<!DOCTYPE html>
<html class="ui-page-login">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title></title>
<link href="css/mui.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<style>
.qrcode {
/*position: absolute;*/
top: 50px;
/*left: 50%;*/
width: 100%;
/*-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);*/
text-align: center;
}
.qrcode img {
margin: 0 auto;
}
</style>
<style>
.area {
margin: 20px auto 0px auto;
}
.mui-input-group:first-child {
margin-top: 20px;
}
.mui-content-padded {
margin-top: 25px;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<h1 class="mui-title">关于酷痞物联</h1>
</header>
<div class="mui-content">
<div class="mui-content-padded">
<div class="qrcode">
<img id="qrcode" src="images/favicon.png" width="128px" />
</div>
<!--<h4 style="margin-top:10px;">mui</h4>-->
<p>本App是酷痞物联雾计算平台的客户端产品,针对最终用户设计,可以实现物联网的客户端基础功能。 更多详细介绍,请到
<a href="http://icoolpy.com">酷痞物联官网</a>查看</p>
<p style="text-align: center;color: #ccc;text-indent: 0;">当前版本:<span id="version">v5.0.2.2</span></p>
</div>
</div>
<script src="js/mui.min.js"></script>
<script src="js/app.js"></script>
<script type="text/javascript" charset="utf-8">
mui.init({
gestureConfig: {
longtap: true
},
swipeBack: true //启用右滑关闭功能
});
//处理点击事件,需要打开原生浏览器
mui('body').on('tap', 'a', function(e) {
var href = this.getAttribute('href');
if(href) {
if(window.plus) {
plus.runtime.openURL(href);
} else {
location.href = href;
}
}
});
</script>
</body>
</html>