61 lines
1.6 KiB
HTML
61 lines
1.6 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no" />
|
|
<style type="text/css">
|
|
*{margin: 0; padding: 0;}
|
|
|
|
html{width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8);}
|
|
|
|
.box { width: 90%; height: 98%; margin: 0 auto; background-color: #000000; margin-top: 1%;}
|
|
.box img { width: 53%; }
|
|
.txt-box { width: 180px; position: fixed; top: 3%; right: 5%; color: #ffffff; text-align: right; line-height: 20px; font-size: 14px; }
|
|
.txt { text-align: center; }
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box" id="box">
|
|
<div class="txt-box">
|
|
<img src="images/jiantou.png" id="img">
|
|
<div class="txt" id="txt"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<script>
|
|
|
|
function is_weixin(){
|
|
var ua = navigator.userAgent.toLowerCase();
|
|
if(ua.match(/MicroMessenger/i)=="micromessenger") {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
var u = navigator.userAgent;
|
|
|
|
if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {
|
|
//安卓手机
|
|
var wx=is_weixin();
|
|
// console.log(wx);
|
|
if(wx){
|
|
document.getElementById('img').innerHTML = '请点击右上角...图形, <br>用浏览器打开下载。';
|
|
}else{
|
|
self.location='http://apk1.szdiyibo.com/apk/msg/msgaz_mdt_tt7.apk';
|
|
// document.getElementById('box').innerHTML = '其他';
|
|
}
|
|
|
|
} else if (u.indexOf('iPhone') > -1) {
|
|
//苹果手机
|
|
self.location='https://apps.apple.com/cn/app/id1499824060';
|
|
document.getElementById('img').style.display = "none"
|
|
|
|
} else if (u.indexOf('Windows Phone') > -1) {
|
|
//winphone手机
|
|
console.log("winphone手机");
|
|
}
|
|
|
|
|
|
</script> |