1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="force-rendering" content="webkit"/>
- <meta name="renderer" content="webkit" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no,minimum-scale=1.0">
- <title>功道云-积分系统用户登录</title>
-
- <script type="text/javascript" src="//res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
- <script type="text/javascript" src="//open.work.weixin.qq.com/wwopen/js/jwxwork-1.0.0.js"></script>
- <script src="static/js/polyfill.min.js"></script>
-
- <!-- <script>
- /**
- * wx.config 参数
- *
- * @see https://open.work.weixin.qq.com/api/doc/90001/90144/90547
- */
- window.configParams = { /* ... */ }
- /**
- * wx.agentConfig 参数
- *
- * @see https://open.work.weixin.qq.com/api/doc/90001/90144/90548
- */
- window.agentConfigParams = { /* ... */ }
- </script> -->
- <style>
- .chromLink {
- width: 163px;
- height: 66px;
- position: absolute;
- left: 50%;
- top: 450px;
- margin-left: -170px;
- cursor: pointer;
- background-color: blue;
- -khtml-opacity: 0;
- -moz-opacity: 0;
- filter: alpha(opacity=0);
- filter: "alpha(opacity=0)";
- opacity: 0;
- filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
- }
- .firefoxLink {
- width: 163px;
- height: 66px;
- position: absolute;
- left: 50%;
- top: 450px;
- cursor: pointer;
- margin-left: 9px;
- background-color: pink;
- filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr=#0f000000, endColorstr=#0f000000);
- -khtml-opacity: 0;
- -moz-opacity: 0;
- filter: alpha(opacity=0);
- filter: "alpha(opacity=0)";
- opacity: 0;
- filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
- }
- </style>
- </head>
- <body>
- <div style="position: absolute; top:-100000px; left:-100000px;">
- <input type="text">
- <input type="password">
- </div>
- <div id="app"></div>
- <div id='ie_tip' style='display:none'><img style='position:absolute;left:50%;margin-left:-366px;' src='/static/images/ltIE9.png'><a
- href='https://www.baidu.com/s?ie=UTF-8&wd=%E8%B0%B7%E6%AD%8C%E6%B5%8F%E8%A7%88%E5%99%A8' target='_blank' class='chromLink'></a><a
- href='https://www.baidu.com/s?ie=UTF-8&wd=%E7%81%AB%E7%8B%90%E6%B5%8F%E8%A7%88%E5%99%A8' target='_blank' class='firefoxLink'></a></div>
- <!-- built files will be auto injected -->
- </body>
- <script>
- (function (window) { // ie9以下浏览器
- var theUA = window.navigator.userAgent.toLowerCase();
- if ((theUA.match(/msie\s\d+/) && theUA.match(/msie\s\d+/)[0]) || (theUA.match(/trident\s?\d+/) && theUA.match(/trident\s?\d+/)[0])) {
- var ieVersion = theUA.match(/msie\s\d+/)[0].match(/\d+/)[0] || theUA.match(/trident\s?\d+/)[0];
- if (ieVersion < 9) {
- // document.writeln("<img style='position:absolute;left:50%;margin-left:-366px;' src='./static/images/ltIE9.png'><a href='https://www.baidu.com/s?ie=UTF-8&wd=%E8%B0%B7%E6%AD%8C%E6%B5%8F%E8%A7%88%E5%99%A8' target='_blank' class='chromLink'></a><a href='https://www.baidu.com/s?ie=UTF-8&wd=%E7%81%AB%E7%8B%90%E6%B5%8F%E8%A7%88%E5%99%A8' target='_blank' class='firefoxLink'></a>");
- // document.execCommand("Stop");
- var app = document.getElementById("app")
- var ie_tip = document.getElementById("ie_tip")
- ie_tip.style.display = 'block';
- app.appendChild(ie_tip)
- };
- }
- })(window);
- </script>
- </html>
|