index.html 19 KB

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