index.html
2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <script type="text/javascript" charset="UTF-8" src="//res.cdn.openinstall.io/openinstall.js"></script> -->
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<meta http-equiv="Pragma" content="no-cache">
<meta charset="UTF-8">
<title>果冻直播</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css?v=2021051401">
<link rel="stylesheet" href="layer-v3.1.0/layer.css">
<script>
var ua = window.navigator.userAgent.toLowerCase();
if (/iphone|ipad|ipod/.test(ua)) {
window.location.href='phone.html';
}else if (/android/.test(ua)) {
window.location.href='phone.html';
}
</script>
</head>
<body>
<div style="width: 100%;overflow: hidden">
<div class="bg">
<img class="bg-icon" src="images/bg.png?v=2021051401" alt="">
<div class="content">
<div id="downloadButton" class="content-btn"></div>
</div>
</div>
<div class="content2"></div>
<div class="foot-box">
<p style="padding-top: 20px;">公司:@2020 武汉丫播互动科技有限公司</p>
<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=42010302002250"><p><img style="vertical-align: middle;margin-top: -5px;" src="images/icon.png">鄂公网安备 42010302002250号</p></a>
<p>地址:武汉市江汉区唐家墩路武汉菱角湖万达广场A栋A2单元21层</p>
<a href="http://gs.ccm.mct.gov.cn/lic/89f454fcbe214837ad1251d9f755dd38"><p>网文:鄂网文〔2020〕1278-033号</p> </a>
<p>ICP:鄂B2-20200347</p>
</div>
</div>
</body>
<script src="lib/jquery-3.1.1.min.js"></script>
<script src="layer-v3.1.0/layer/layer.js"></script>
<script>
var data = OpenInstall.parseUrlParams();//openinstall.js中提供的工具函数,解析url中的所有查询参数
new OpenInstall({
appKey : "r06f9c",
onready : function() {
var m = this, button = document.getElementById("downloadButton");
button.style.visibility = "visible";
/*在app已安装的情况尝试拉起app*/
m.schemeWakeup();
/*用户点击某个按钮时(假定按钮id为downloadButton),安装app*/
button.onclick = function() {
m.wakeupOrInstall();
return false;
}
}
}, data);
</script>
</html>