| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
-
- <title>下载页面</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <meta http-equiv="X-UA-Compatible" content="IE=9"/>
- <meta http-equiv="X-UA-Compatible" content="IE=10"/>
- <script type="text/javascript" src="jquery-1.8.0.min.js"></script>
-
- <style type="text/css">
- *{margin:0; padding:0;}
- a{text-decoration: none;}
- img{max-width: 100%; height: auto;}
- .ziti{font-family:'Microsoft YaHei', Verdana, 'SimSun', 'Lucida Grande', 'Trebuchet MS', Helvetica, sans-serif;
- letter-spacing:normal; font-size: 26px;color: #003333;font-weight: normal;}
- .weixin-tip{display: none; position: fixed; left:0; top:0; bottom:0; background: rgba(0,0,0,0.8); filter:alpha(opacity=80); height: 100%; width: 100%; z-index: 100;}
- .weixin-tip p{text-align: center; margin-top: 10%; padding:0 5%;}
- .not-weixin{position: absolute; left:0; top:0; bottom:0; height: 100%; width: 100%; z-index: 10;}
- .not-weixin p{text-align: center; margin-top: 0%; padding:0 5%;}
- body{background-color:white;}
- </style>
- </head>
-
- <body>
- <div class="weixin-tip">
- <p>
- <img src="live_weixin1.png"/>
- </p>
- </div>
- <div class="not-weixin">
- <center>
- <p>
- <div style="text-align: left;max-height: 70%;width: 100%;margin-top: 0%;">
- <div style="width: 100%;text-align: center;" >
- <img src="logo_rzx.png" width="200px" style="margin-top: 80px"/>
- </div>
- <div style="width: 100%;" >
- <div style="width: 100%;height: 5%;"></div>
- <center>
- <div style="width: 600px">
- <div style="text-align: center">
- <span class="ziti">
- <span style="font-size: 52px;color: #f08300;">APP下载</span><br/>
- <br/>
- 操作系统: 安卓 5.0及以上 <br/>
- <br/>
- </span>
- </div>
- </div>
-
- <div style="width: 50%;">
- <a href="http://www.cngrfid.com/rzx.apk" style="cursor: pointer;"><img src="android.jpg" style="width: 200px;"/></a>
-
-
- </div>
- </center>
-
-
-
- </div>
-
-
- </div>
-
- </p>
- </center>
- </div>
- <script type="text/javascript">
- $(window).on("load",function(){
- var winHeight = $(window).height();
- function is_weixin() {
- var ua = navigator.userAgent.toLowerCase();
- if (ua.match(/MicroMessenger/i) == "micromessenger") {
- return true;
- } else {
- return false;
- }
- }
- var isWeixin = is_weixin();
- if(isWeixin){
- $(".weixin-tip").css("height",winHeight);
- $(".weixin-tip").show();
- }
- })
- </script>
- </body>
- </html>
|