index.html 19 KB

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