| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
-
- <title>下载页面</title>
- <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="js/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" />
- </div>
- <div style="width: 100%;" >
- <div style="width: 100%;height: 5%;"></div>
- <center>
- <div style="width: 50%;">
- <div style="text-align: left;">
- <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://em.hizima.com/appFile/new/SmartLock.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>
|