184 lines
14 KiB
HTML
184 lines
14 KiB
HTML
|
|
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><meta name=renderer content=webkit><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel=icon href=/favicon.ico><title>同步录音录像软件</title><script src=/jquery.min.js></script><script src=/EasyPlayer-lib.min.js></script><!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]--><style>html,
|
||
|
|
body,
|
||
|
|
#app {
|
||
|
|
height: 100%;
|
||
|
|
margin: 0px;
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
.chromeframe {
|
||
|
|
margin: 0.2em 0;
|
||
|
|
background: #ccc;
|
||
|
|
color: #000;
|
||
|
|
padding: 0.2em 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader-wrapper {
|
||
|
|
position: fixed;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
z-index: 999999;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader {
|
||
|
|
display: block;
|
||
|
|
position: relative;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
width: 150px;
|
||
|
|
height: 150px;
|
||
|
|
margin: -75px 0 0 -75px;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 3px solid transparent;
|
||
|
|
border-top-color: #FFF;
|
||
|
|
-webkit-animation: spin 2s linear infinite;
|
||
|
|
-ms-animation: spin 2s linear infinite;
|
||
|
|
-moz-animation: spin 2s linear infinite;
|
||
|
|
-o-animation: spin 2s linear infinite;
|
||
|
|
animation: spin 2s linear infinite;
|
||
|
|
z-index: 1001;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader:before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
top: 5px;
|
||
|
|
left: 5px;
|
||
|
|
right: 5px;
|
||
|
|
bottom: 5px;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 3px solid transparent;
|
||
|
|
border-top-color: #FFF;
|
||
|
|
-webkit-animation: spin 3s linear infinite;
|
||
|
|
-moz-animation: spin 3s linear infinite;
|
||
|
|
-o-animation: spin 3s linear infinite;
|
||
|
|
-ms-animation: spin 3s linear infinite;
|
||
|
|
animation: spin 3s linear infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader:after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
top: 15px;
|
||
|
|
left: 15px;
|
||
|
|
right: 15px;
|
||
|
|
bottom: 15px;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 3px solid transparent;
|
||
|
|
border-top-color: #FFF;
|
||
|
|
-moz-animation: spin 1.5s linear infinite;
|
||
|
|
-o-animation: spin 1.5s linear infinite;
|
||
|
|
-ms-animation: spin 1.5s linear infinite;
|
||
|
|
-webkit-animation: spin 1.5s linear infinite;
|
||
|
|
animation: spin 1.5s linear infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
@-webkit-keyframes spin {
|
||
|
|
0% {
|
||
|
|
-webkit-transform: rotate(0deg);
|
||
|
|
-ms-transform: rotate(0deg);
|
||
|
|
transform: rotate(0deg);
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
-webkit-transform: rotate(360deg);
|
||
|
|
-ms-transform: rotate(360deg);
|
||
|
|
transform: rotate(360deg);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes spin {
|
||
|
|
0% {
|
||
|
|
-webkit-transform: rotate(0deg);
|
||
|
|
-ms-transform: rotate(0deg);
|
||
|
|
transform: rotate(0deg);
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
-webkit-transform: rotate(360deg);
|
||
|
|
-ms-transform: rotate(360deg);
|
||
|
|
transform: rotate(360deg);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
#loader-wrapper .loader-section {
|
||
|
|
position: fixed;
|
||
|
|
top: 0;
|
||
|
|
width: 51%;
|
||
|
|
height: 100%;
|
||
|
|
background: #7171C6;
|
||
|
|
z-index: 1000;
|
||
|
|
-webkit-transform: translateX(0);
|
||
|
|
-ms-transform: translateX(0);
|
||
|
|
transform: translateX(0);
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader-wrapper .loader-section.section-left {
|
||
|
|
left: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader-wrapper .loader-section.section-right {
|
||
|
|
right: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.loaded #loader-wrapper .loader-section.section-left {
|
||
|
|
-webkit-transform: translateX(-100%);
|
||
|
|
-ms-transform: translateX(-100%);
|
||
|
|
transform: translateX(-100%);
|
||
|
|
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||
|
|
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||
|
|
}
|
||
|
|
|
||
|
|
.loaded #loader-wrapper .loader-section.section-right {
|
||
|
|
-webkit-transform: translateX(100%);
|
||
|
|
-ms-transform: translateX(100%);
|
||
|
|
transform: translateX(100%);
|
||
|
|
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||
|
|
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||
|
|
}
|
||
|
|
|
||
|
|
.loaded #loader {
|
||
|
|
opacity: 0;
|
||
|
|
-webkit-transition: all 0.3s ease-out;
|
||
|
|
transition: all 0.3s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loaded #loader-wrapper {
|
||
|
|
visibility: hidden;
|
||
|
|
-webkit-transform: translateY(-100%);
|
||
|
|
-ms-transform: translateY(-100%);
|
||
|
|
transform: translateY(-100%);
|
||
|
|
-webkit-transition: all 0.3s 1s ease-out;
|
||
|
|
transition: all 0.3s 1s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.no-js #loader-wrapper {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.no-js h1 {
|
||
|
|
color: #222222;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader-wrapper .load_title {
|
||
|
|
font-family: 'Open Sans';
|
||
|
|
color: #FFF;
|
||
|
|
font-size: 19px;
|
||
|
|
width: 100%;
|
||
|
|
text-align: center;
|
||
|
|
z-index: 9999999999999;
|
||
|
|
position: absolute;
|
||
|
|
top: 60%;
|
||
|
|
opacity: 1;
|
||
|
|
line-height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#loader-wrapper .load_title span {
|
||
|
|
font-weight: normal;
|
||
|
|
font-style: italic;
|
||
|
|
font-size: 13px;
|
||
|
|
color: #FFF;
|
||
|
|
opacity: 0.5;
|
||
|
|
}</style><link href=/static/css/chunk-libs.43f926c7.css rel=stylesheet><link href=/static/css/app.222b1abe.css rel=stylesheet></head><body><div id=app><div id=loader-wrapper><div id=loader></div><div class="loader-section section-left"></div><div class="loader-section section-right"></div><div class=load_title>正在加载系统资源,请耐心等待</div></div></div><script>(function(c){function e(e){for(var u,d,a=e[0],k=e[1],b=e[2],t=0,r=[];t<a.length;t++)d=a[t],Object.prototype.hasOwnProperty.call(h,d)&&h[d]&&r.push(h[d][0]),h[d]=0;for(u in k)Object.prototype.hasOwnProperty.call(k,u)&&(c[u]=k[u]);o&&o(e);while(r.length)r.shift()();return f.push.apply(f,b||[]),n()}function n(){for(var c,e=0;e<f.length;e++){for(var n=f[e],u=!0,d=1;d<n.length;d++){var a=n[d];0!==h[a]&&(u=!1)}u&&(f.splice(e--,1),c=k(k.s=n[0]))}return c}var u={},d={runtime:0},h={runtime:0},f=[];function a(c){return k.p+"static/js/"+({}[c]||c)+"."+{"chunk-005cb0c7":"1cb76a69","chunk-005d5574":"83af9edd","chunk-0132f831":"9a51b89d","chunk-1537fc93":"c29240a6","chunk-1cd4432e":"45b5f60a","chunk-1d7d97ec":"4ac1fa59","chunk-1465a79c":"6dca4403","chunk-22425499":"2a3adc5b","chunk-24062857":"8a7711c1","chunk-2b02de32":"b7936915","chunk-69cfa8fc":"dd5804cb","chunk-6c306530":"bbe7832e","chunk-9b49430e":"9a44f2b5","chunk-f4845968":"2d5dd599","chunk-1d869b76":"368cfa66","chunk-210ca3e9":"c00a58f3","chunk-210ce324":"78cf7b33","chunk-2904f66d":"ad320a72","chunk-2d0a3b04":"b15a372c","chunk-2d0b1626":"d86e6635","chunk-2d0b2b28":"9e271da6","chunk-7a62aba2":"fed278e4","chunk-2d0b6974":"414810e9","chunk-2d0bce05":"dc779ba2","chunk-2d0c8e18":"09d8c7a4","chunk-2d0cc6b3":"e4c321a6","chunk-2d0ced91":"3926a856","chunk-2d0d0818":"47019e87","chunk-2d0d7e57":"e9bcf8f4","chunk-16749282":"f688ed44","chunk-24f2eae0":"99e3708a","chunk-37c52b7a":"c1c9c3f9","chunk-53dfff6c":"1b0f5623","chunk-2d0d9f81":"2b4dd6d9","chunk-2d0da2ea":"db4b9ada","chunk-2d0e2366":"00afd6b9","chunk-4e363238":"7e8846ae","chunk-813300ee":"4bcd28af","chunk-2d0f012d":"e89b6c11","chunk-2d20955d":"5f20e36d","chunk-2d217c9e":"c54502fd","chunk-2d21a3bb":"b78e776d","chunk-2d22252c":"3aec688c","chunk-2d230898":"92721a19","chunk-2d230c18":"68ffed0d","chunk-3b69bc00":"cef9207f","chunk-4142267f":"614a54fe","chunk-461c497b":"5ad5766e","chunk-4815ab5a":"0e65819b","chunk-546abf04":"b1c5bcf1","chunk-582b2a7a":"afd40b8d","chunk-5b83c289":"797d5f46","chunk-7fa21b9b":"0f0e34d8","chunk-5bb73842":"42eb69bf","chunk-2d0b6c6c":"d17cfa0d","chunk-2d0d38ff":"7d1b3df9","chunk-2d0de3b1":"23759d76","chunk-2d212b99":"a844579e","chunk-3f93175c":"810d33e1","chunk-3c27d3b1":"20f0245f","chunk-6323b2f6":"5b556149","chunk-68702101":"04c2ece0","chunk-6b505eee":"ebac8cb5","chunk-73777802":"2af53136","chunk-74680cd7":"1e709b1b","chunk-75c38c06":"0958d068","chunk-769fb47b":"97571e80","chunk-78d2d26b":"9a5cc370","chunk-7d6fd1f7":"b2b17568","chunk-81a2a40e":"71d7b522","chunk-8579d4da":"bf77c6bc","chunk-8d66febc":"fc97cf18","chunk-8ee3fc10":"0b40b03f","chunk-a6678f74":"783fb48a","chunk-a96ae942":"1ab43465","chunk-b60e34d8":"e042e5a3","chunk-ccb29664":"9552d276","chunk-d19c1a98":"085325b7","chunk-d6ec12d8":"35cef9d4","chunk-d70789ca":"e5f0f362","chunk-e1a6d904":"c246787c","chunk-e54b6898":"a3a4a472","chunk-f5d52824":"a4482cf0","chunk-31eae13f":"c5a8f7ae","chunk-60006966":"98d8dcd3","chunk-f27617f2":"2827b22f","chunk-5647afa8":"691f011d","chunk-0d5b0085":"03408954"}[c]+".js"}function k(e){if(u[e])return u[e].exports;var n=u[e]={i:e,l:!1,exports:{}};return c[e].call(n.exports,n,n.exports,k),n.l=!0,n.exports}k.e=function(c){var e=[],n={"chunk-005d5574":1,"chunk-1537fc93":1,"chunk-1cd4432e":1,"chunk-1465a79c":1,"chunk-24062857":1,"chunk-9b49430e":1,"chunk-1d869b76":1,"chunk-2904f66d":1,"chunk-7a62aba2":1,"chunk-16749282":1,"chunk-24f2eae0":1,"chunk-37c52b7a":1,"chunk-53dfff6c":1,"chunk-4e363238":1,"chunk-813300ee":1,"chunk-4142267f":1,"chunk-461c497b":1,"chunk-4815ab5a":1,"chunk-546abf04":1,"chunk-5b83c289":1,"chunk-5bb73842":1,"chunk-3c27d3b1":1,"chunk-6323b2f6":1,"chunk-6b505eee":1,"chunk-73777802":1,"chunk-74680cd7":1,"chunk-75c38c06":1,"chunk-769fb47
|