12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="force-rendering" content="webkit"/>
- <meta name="renderer" content="webkit" />
- <meta name="format-detection" content="telephone=no">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no,viewport-fit=cover">
- <title>功道云</title>
- <script src="https://at.alicdn.com/t/c/font_3688269_h7ynmhqwysu.js?spm=a313x.7781069.1998910419.80&file=font_3688269_h7ynmhqwysu.js"></script>
- <script src="static/js/polyfill.min.js"></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) {
- var app = document.getElementById("app")
- var ie_tip = document.getElementById("ie_tip")
- ie_tip.style.display = 'block';
- app.appendChild(ie_tip)
- };
- }
- })(window);
- </script>
- </html>
|