index.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="renderer" content="webkit">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9. <title><%= webpackConfig.name %></title>
  10. <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
  11. <style>
  12. html,
  13. body,
  14. #app {
  15. height: 100%;
  16. margin: 0px;
  17. padding: 0px;
  18. }
  19. .chromeframe {
  20. margin: 0.2em 0;
  21. background: #ccc;
  22. color: #000;
  23. padding: 0.2em 0;
  24. }
  25. #loader-wrapper {
  26. position: fixed;
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. height: 100%;
  31. z-index: 999999;
  32. }
  33. #loader {
  34. display: block;
  35. position: relative;
  36. left: 50%;
  37. top: 50%;
  38. width: 150px;
  39. height: 150px;
  40. margin: -75px 0 0 -75px;
  41. border-radius: 50%;
  42. border: 3px solid transparent;
  43. border-top-color: #FFF;
  44. -webkit-animation: spin 2s linear infinite;
  45. -ms-animation: spin 2s linear infinite;
  46. -moz-animation: spin 2s linear infinite;
  47. -o-animation: spin 2s linear infinite;
  48. animation: spin 2s linear infinite;
  49. z-index: 1001;
  50. }
  51. #loader:before {
  52. content: "";
  53. position: absolute;
  54. top: 5px;
  55. left: 5px;
  56. right: 5px;
  57. bottom: 5px;
  58. border-radius: 50%;
  59. border: 3px solid transparent;
  60. border-top-color: #FFF;
  61. -webkit-animation: spin 3s linear infinite;
  62. -moz-animation: spin 3s linear infinite;
  63. -o-animation: spin 3s linear infinite;
  64. -ms-animation: spin 3s linear infinite;
  65. animation: spin 3s linear infinite;
  66. }
  67. #loader:after {
  68. content: "";
  69. position: absolute;
  70. top: 15px;
  71. left: 15px;
  72. right: 15px;
  73. bottom: 15px;
  74. border-radius: 50%;
  75. border: 3px solid transparent;
  76. border-top-color: #FFF;
  77. -moz-animation: spin 1.5s linear infinite;
  78. -o-animation: spin 1.5s linear infinite;
  79. -ms-animation: spin 1.5s linear infinite;
  80. -webkit-animation: spin 1.5s linear infinite;
  81. animation: spin 1.5s linear infinite;
  82. }
  83. @-webkit-keyframes spin {
  84. 0% {
  85. -webkit-transform: rotate(0deg);
  86. -ms-transform: rotate(0deg);
  87. transform: rotate(0deg);
  88. }
  89. 100% {
  90. -webkit-transform: rotate(360deg);
  91. -ms-transform: rotate(360deg);
  92. transform: rotate(360deg);
  93. }
  94. }
  95. @keyframes spin {
  96. 0% {
  97. -webkit-transform: rotate(0deg);
  98. -ms-transform: rotate(0deg);
  99. transform: rotate(0deg);
  100. }
  101. 100% {
  102. -webkit-transform: rotate(360deg);
  103. -ms-transform: rotate(360deg);
  104. transform: rotate(360deg);
  105. }
  106. }
  107. #loader-wrapper .loader-section {
  108. position: fixed;
  109. top: 0;
  110. width: 51%;
  111. height: 100%;
  112. background: #245fba;
  113. z-index: 1000;
  114. -webkit-transform: translateX(0);
  115. -ms-transform: translateX(0);
  116. transform: translateX(0);
  117. }
  118. #loader-wrapper .loader-section.section-left {
  119. left: 0;
  120. }
  121. #loader-wrapper .loader-section.section-right {
  122. right: 0;
  123. }
  124. .loaded #loader-wrapper .loader-section.section-left {
  125. -webkit-transform: translateX(-100%);
  126. -ms-transform: translateX(-100%);
  127. transform: translateX(-100%);
  128. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  129. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  130. }
  131. .loaded #loader-wrapper .loader-section.section-right {
  132. -webkit-transform: translateX(100%);
  133. -ms-transform: translateX(100%);
  134. transform: translateX(100%);
  135. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  136. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  137. }
  138. .loaded #loader {
  139. opacity: 0;
  140. -webkit-transition: all 0.3s ease-out;
  141. transition: all 0.3s ease-out;
  142. }
  143. .loaded #loader-wrapper {
  144. visibility: hidden;
  145. -webkit-transform: translateY(-100%);
  146. -ms-transform: translateY(-100%);
  147. transform: translateY(-100%);
  148. -webkit-transition: all 0.3s 1s ease-out;
  149. transition: all 0.3s 1s ease-out;
  150. }
  151. .no-js #loader-wrapper {
  152. display: none;
  153. }
  154. .no-js h1 {
  155. color: #222222;
  156. }
  157. #loader-wrapper .load_title {
  158. font-family: 'Open Sans';
  159. color: #FFF;
  160. font-size: 19px;
  161. width: 100%;
  162. text-align: center;
  163. z-index: 9999999999999;
  164. position: absolute;
  165. top: 60%;
  166. opacity: 1;
  167. line-height: 30px;
  168. }
  169. #loader-wrapper .load_title span {
  170. font-weight: normal;
  171. font-style: italic;
  172. font-size: 13px;
  173. color: #FFF;
  174. opacity: 0.5;
  175. }
  176. .socket{
  177. width: 200px;
  178. height: 200px;
  179. position: absolute;
  180. left: 50%;
  181. margin-left: -100px;
  182. top: 50%;
  183. margin-top: -100px;
  184. }
  185. .hex-brick{
  186. background: #87CEEB;
  187. width: 30px;
  188. height: 17px;
  189. position: absolute;
  190. top: 5px;
  191. animation-name: fade;
  192. animation-duration: 2s;
  193. animation-iteration-count: infinite;
  194. -webkit-animation-name: fade;
  195. -webkit-animation-duration: 2s;
  196. -webkit-animation-iteration-count: infinite;
  197. }
  198. .h2{
  199. transform: rotate(60deg);
  200. -webkit-transform: rotate(60deg);
  201. }
  202. .h3{
  203. transform: rotate(-60deg);
  204. -webkit-transform: rotate(-60deg);
  205. }
  206. .gel{
  207. height: 30px;
  208. width: 30px;
  209. transition: all .3s;
  210. -webkit-transition: all .3s;
  211. position: absolute;
  212. top: 50%;
  213. left: 50%;
  214. }
  215. .center-gel{
  216. margin-left: -15px;
  217. margin-top: -15px;
  218. animation-name: pulse;
  219. animation-duration: 2s;
  220. animation-iteration-count: infinite;
  221. -webkit-animation-name: pulse;
  222. -webkit-animation-duration: 2s;
  223. -webkit-animation-iteration-count: infinite;
  224. }
  225. .c1{
  226. margin-left: -47px;
  227. margin-top: -15px;
  228. }
  229. .c2{
  230. margin-left: -31px;
  231. margin-top: -43px;
  232. }
  233. .c3{
  234. margin-left: 1px;
  235. margin-top: -43px;
  236. }
  237. .c4{
  238. margin-left: 17px;
  239. margin-top: -15px;
  240. }
  241. .c5{
  242. margin-left: -31px;
  243. margin-top: 13px;
  244. }
  245. .c6{
  246. margin-left: 1px;
  247. margin-top: 13px;
  248. }
  249. .c7{
  250. margin-left: -63px;
  251. margin-top: -43px;
  252. }
  253. .c8{
  254. margin-left: 33px;
  255. margin-top: -43px;
  256. }
  257. .c9{
  258. margin-left: -15px;
  259. margin-top: 41px;
  260. }
  261. .c10{
  262. margin-left: -63px;
  263. margin-top: 13px;
  264. }
  265. .c11{
  266. margin-left: 33px;
  267. margin-top: 13px;
  268. }
  269. .c12{
  270. margin-left: -15px;
  271. margin-top: -71px;
  272. }
  273. .c13{
  274. margin-left: -47px;
  275. margin-top: -71px;
  276. }
  277. .c14{
  278. margin-left: 17px;
  279. margin-top: -71px;
  280. }
  281. .c15{
  282. margin-left: -47px;
  283. margin-top: 41px;
  284. }
  285. .c16{
  286. margin-left: 17px;
  287. margin-top: 41px;
  288. }
  289. .c17{
  290. margin-left: -79px;
  291. margin-top: -15px;
  292. }
  293. .c18{
  294. margin-left: 49px;
  295. margin-top: -15px;
  296. }
  297. .c19{
  298. margin-left: -63px;
  299. margin-top: -99px;
  300. }
  301. .c20{
  302. margin-left: 33px;
  303. margin-top: -99px;
  304. }
  305. .c21{
  306. margin-left: 1px;
  307. margin-top: -99px;
  308. }
  309. .c22{
  310. margin-left: -31px;
  311. margin-top: -99px;
  312. }
  313. .c23{
  314. margin-left: -63px;
  315. margin-top: 69px;
  316. }
  317. .c24{
  318. margin-left: 33px;
  319. margin-top: 69px;
  320. }
  321. .c25{
  322. margin-left: 1px;
  323. margin-top: 69px;
  324. }
  325. .c26{
  326. margin-left: -31px;
  327. margin-top: 69px;
  328. }
  329. .c27{
  330. margin-left: -79px;
  331. margin-top: -15px;
  332. }
  333. .c28{
  334. margin-left: -95px;
  335. margin-top: -43px;
  336. }
  337. .c29{
  338. margin-left: -95px;
  339. margin-top: 13px;
  340. }
  341. .c30{
  342. margin-left: 49px;
  343. margin-top: 41px;
  344. }
  345. .c31{
  346. margin-left: -79px;
  347. margin-top: -71px;
  348. }
  349. .c32{
  350. margin-left: -111px;
  351. margin-top: -15px;
  352. }
  353. .c33{
  354. margin-left: 65px;
  355. margin-top: -43px;
  356. }
  357. .c34{
  358. margin-left: 65px;
  359. margin-top: 13px;
  360. }
  361. .c35{
  362. margin-left: -79px;
  363. margin-top: 41px;
  364. }
  365. .c36{
  366. margin-left: 49px;
  367. margin-top: -71px;
  368. }
  369. .c37{
  370. margin-left: 81px;
  371. margin-top: -15px;
  372. }
  373. .r1{
  374. animation-name: pulse;
  375. animation-duration: 2s;
  376. animation-iteration-count: infinite;
  377. animation-delay: .2s;
  378. -webkit-animation-name: pulse;
  379. -webkit-animation-duration: 2s;
  380. -webkit-animation-iteration-count: infinite;
  381. -webkit-animation-delay: .2s;
  382. }
  383. .r2{
  384. animation-name: pulse;
  385. animation-duration: 2s;
  386. animation-iteration-count: infinite;
  387. animation-delay: .4s;
  388. -webkit-animation-name: pulse;
  389. -webkit-animation-duration: 2s;
  390. -webkit-animation-iteration-count: infinite;
  391. -webkit-animation-delay: .4s;
  392. }
  393. .r3{
  394. animation-name: pulse;
  395. animation-duration: 2s;
  396. animation-iteration-count: infinite;
  397. animation-delay: .6s;
  398. -webkit-animation-name: pulse;
  399. -webkit-animation-duration: 2s;
  400. -webkit-animation-iteration-count: infinite;
  401. -webkit-animation-delay: .6s;
  402. }
  403. .r1 > .hex-brick{
  404. animation-name: fade;
  405. animation-duration: 2s;
  406. animation-iteration-count: infinite;
  407. animation-delay: .2s;
  408. -webkit-animation-name: fade;
  409. -webkit-animation-duration: 2s;
  410. -webkit-animation-iteration-count: infinite;
  411. -webkit-animation-delay: .2s;
  412. }
  413. .r2 > .hex-brick{
  414. animation-name: fade;
  415. animation-duration: 2s;
  416. animation-iteration-count: infinite;
  417. animation-delay: .4s;
  418. -webkit-animation-name: fade;
  419. -webkit-animation-duration: 2s;
  420. -webkit-animation-iteration-count: infinite;
  421. -webkit-animation-delay: .4s;
  422. }
  423. .r3 > .hex-brick{
  424. animation-name: fade;
  425. animation-duration: 2s;
  426. animation-iteration-count: infinite;
  427. animation-delay: .6s;
  428. -webkit-animation-name: fade;
  429. -webkit-animation-duration: 2s;
  430. -webkit-animation-iteration-count: infinite;
  431. -webkit-animation-delay: .6s;
  432. }
  433. @keyframes pulse{
  434. 0%{
  435. -webkit-transform: scale(1);
  436. transform: scale(1);
  437. }
  438. 50%{
  439. -webkit-transform: scale(0.01);
  440. transform: scale(0.01);
  441. }
  442. 100%{
  443. -webkit-transform: scale(1);
  444. transform: scale(1);
  445. }
  446. }
  447. @keyframes fade{
  448. 0%{
  449. background: #ABF8FF;
  450. }
  451. 50%{
  452. background: #90BBBF;
  453. }
  454. 100%{
  455. background: #ABF8FF;
  456. }
  457. }
  458. @-webkit-keyframes pulse{
  459. 0%{
  460. -webkit-transform: scale(1);
  461. transform: scale(1);
  462. }
  463. 50%{
  464. -webkit-transform: scale(0.01);
  465. transform: scale(0.01);
  466. }
  467. 100%{
  468. -webkit-transform: scale(1);
  469. transform: scale(1);
  470. }
  471. }
  472. @-webkit-keyframes fade{
  473. 0%{
  474. background: #ABF8FF;
  475. }
  476. 50%{
  477. background: #389CA6;
  478. }
  479. 100%{
  480. background: #ABF8FF;
  481. }
  482. }
  483. </style>
  484. </head>
  485. <body>
  486. <div id="app">
  487. <div id="loader-wrapper">
  488. <div class="socket">
  489. <div class="gel center-gel">
  490. <div class="hex-brick h1"></div>
  491. <div class="hex-brick h2"></div>
  492. <div class="hex-brick h3"></div>
  493. </div>
  494. <div class="gel c1 r1">
  495. <div class="hex-brick h1"></div>
  496. <div class="hex-brick h2"></div>
  497. <div class="hex-brick h3"></div>
  498. </div>
  499. <div class="gel c2 r1">
  500. <div class="hex-brick h1"></div>
  501. <div class="hex-brick h2"></div>
  502. <div class="hex-brick h3"></div>
  503. </div>
  504. <div class="gel c3 r1">
  505. <div class="hex-brick h1"></div>
  506. <div class="hex-brick h2"></div>
  507. <div class="hex-brick h3"></div>
  508. </div>
  509. <div class="gel c4 r1">
  510. <div class="hex-brick h1"></div>
  511. <div class="hex-brick h2"></div>
  512. <div class="hex-brick h3"></div>
  513. </div>
  514. <div class="gel c5 r1">
  515. <div class="hex-brick h1"></div>
  516. <div class="hex-brick h2"></div>
  517. <div class="hex-brick h3"></div>
  518. </div>
  519. <div class="gel c6 r1">
  520. <div class="hex-brick h1"></div>
  521. <div class="hex-brick h2"></div>
  522. <div class="hex-brick h3"></div>
  523. </div>
  524. <div class="gel c7 r2">
  525. <div class="hex-brick h1"></div>
  526. <div class="hex-brick h2"></div>
  527. <div class="hex-brick h3"></div>
  528. </div>
  529. <div class="gel c8 r2">
  530. <div class="hex-brick h1"></div>
  531. <div class="hex-brick h2"></div>
  532. <div class="hex-brick h3"></div>
  533. </div>
  534. <div class="gel c9 r2">
  535. <div class="hex-brick h1"></div>
  536. <div class="hex-brick h2"></div>
  537. <div class="hex-brick h3"></div>
  538. </div>
  539. <div class="gel c10 r2">
  540. <div class="hex-brick h1"></div>
  541. <div class="hex-brick h2"></div>
  542. <div class="hex-brick h3"></div>
  543. </div>
  544. <div class="gel c11 r2">
  545. <div class="hex-brick h1"></div>
  546. <div class="hex-brick h2"></div>
  547. <div class="hex-brick h3"></div>
  548. </div>
  549. <div class="gel c12 r2">
  550. <div class="hex-brick h1"></div>
  551. <div class="hex-brick h2"></div>
  552. <div class="hex-brick h3"></div>
  553. </div>
  554. <div class="gel c13 r2">
  555. <div class="hex-brick h1"></div>
  556. <div class="hex-brick h2"></div>
  557. <div class="hex-brick h3"></div>
  558. </div>
  559. <div class="gel c14 r2">
  560. <div class="hex-brick h1"></div>
  561. <div class="hex-brick h2"></div>
  562. <div class="hex-brick h3"></div>
  563. </div>
  564. <div class="gel c15 r2">
  565. <div class="hex-brick h1"></div>
  566. <div class="hex-brick h2"></div>
  567. <div class="hex-brick h3"></div>
  568. </div>
  569. <div class="gel c16 r2">
  570. <div class="hex-brick h1"></div>
  571. <div class="hex-brick h2"></div>
  572. <div class="hex-brick h3"></div>
  573. </div>
  574. <div class="gel c17 r2">
  575. <div class="hex-brick h1"></div>
  576. <div class="hex-brick h2"></div>
  577. <div class="hex-brick h3"></div>
  578. </div>
  579. <div class="gel c18 r2">
  580. <div class="hex-brick h1"></div>
  581. <div class="hex-brick h2"></div>
  582. <div class="hex-brick h3"></div>
  583. </div>
  584. <div class="gel c19 r3">
  585. <div class="hex-brick h1"></div>
  586. <div class="hex-brick h2"></div>
  587. <div class="hex-brick h3"></div>
  588. </div>
  589. <div class="gel c20 r3">
  590. <div class="hex-brick h1"></div>
  591. <div class="hex-brick h2"></div>
  592. <div class="hex-brick h3"></div>
  593. </div>
  594. <div class="gel c21 r3">
  595. <div class="hex-brick h1"></div>
  596. <div class="hex-brick h2"></div>
  597. <div class="hex-brick h3"></div>
  598. </div>
  599. <div class="gel c22 r3">
  600. <div class="hex-brick h1"></div>
  601. <div class="hex-brick h2"></div>
  602. <div class="hex-brick h3"></div>
  603. </div>
  604. <div class="gel c23 r3">
  605. <div class="hex-brick h1"></div>
  606. <div class="hex-brick h2"></div>
  607. <div class="hex-brick h3"></div>
  608. </div>
  609. <div class="gel c24 r3">
  610. <div class="hex-brick h1"></div>
  611. <div class="hex-brick h2"></div>
  612. <div class="hex-brick h3"></div>
  613. </div>
  614. <div class="gel c25 r3">
  615. <div class="hex-brick h1"></div>
  616. <div class="hex-brick h2"></div>
  617. <div class="hex-brick h3"></div>
  618. </div>
  619. <div class="gel c26 r3">
  620. <div class="hex-brick h1"></div>
  621. <div class="hex-brick h2"></div>
  622. <div class="hex-brick h3"></div>
  623. </div>
  624. <div class="gel c28 r3">
  625. <div class="hex-brick h1"></div>
  626. <div class="hex-brick h2"></div>
  627. <div class="hex-brick h3"></div>
  628. </div>
  629. <div class="gel c29 r3">
  630. <div class="hex-brick h1"></div>
  631. <div class="hex-brick h2"></div>
  632. <div class="hex-brick h3"></div>
  633. </div>
  634. <div class="gel c30 r3">
  635. <div class="hex-brick h1"></div>
  636. <div class="hex-brick h2"></div>
  637. <div class="hex-brick h3"></div>
  638. </div>
  639. <div class="gel c31 r3">
  640. <div class="hex-brick h1"></div>
  641. <div class="hex-brick h2"></div>
  642. <div class="hex-brick h3"></div>
  643. </div>
  644. <div class="gel c32 r3">
  645. <div class="hex-brick h1"></div>
  646. <div class="hex-brick h2"></div>
  647. <div class="hex-brick h3"></div>
  648. </div>
  649. <div class="gel c33 r3">
  650. <div class="hex-brick h1"></div>
  651. <div class="hex-brick h2"></div>
  652. <div class="hex-brick h3"></div>
  653. </div>
  654. <div class="gel c34 r3">
  655. <div class="hex-brick h1"></div>
  656. <div class="hex-brick h2"></div>
  657. <div class="hex-brick h3"></div>
  658. </div>
  659. <div class="gel c35 r3">
  660. <div class="hex-brick h1"></div>
  661. <div class="hex-brick h2"></div>
  662. <div class="hex-brick h3"></div>
  663. </div>
  664. <div class="gel c36 r3">
  665. <div class="hex-brick h1"></div>
  666. <div class="hex-brick h2"></div>
  667. <div class="hex-brick h3"></div>
  668. </div>
  669. <div class="gel c37 r3">
  670. <div class="hex-brick h1"></div>
  671. <div class="hex-brick h2"></div>
  672. <div class="hex-brick h3"></div>
  673. </div>
  674. </div>
  675. <!--<div id="loader"></div>-->
  676. <!--<div class="loader-section section-left"></div>-->
  677. <!--<div class="loader-section section-right"></div>-->
  678. <!--<div class="load_title">正在加载系统资源,请耐心等待</div>-->
  679. </div>
  680. </div>
  681. </body>
  682. </html>