index.html 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  8. <title><%= process.env.VUE_APP_NAME %></title>
  9. <!-- require cdn assets css -->
  10. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
  11. <link rel="stylesheet" href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" />
  12. <% } %>
  13. <style type="text/css">
  14. #pageInitLoading {
  15. top: 50%;
  16. left: 50%;
  17. position: absolute;
  18. -webkit-transform: translateY(-50%) translateX(-50%);
  19. transform: translateY(-50%) translateX(-50%);
  20. z-index: 100;
  21. }
  22. .la-pacman,
  23. .la-pacman > div {
  24. position: relative;
  25. -webkit-box-sizing: border-box;
  26. -moz-box-sizing: border-box;
  27. box-sizing: border-box;
  28. }
  29. .la-pacman {
  30. display: block;
  31. font-size: 0;
  32. color: #1890ff;
  33. }
  34. .la-pacman.la-dark {
  35. color: #333;
  36. }
  37. .la-pacman > div {
  38. display: inline-block;
  39. float: none;
  40. background-color: currentColor;
  41. border: 0 solid currentColor;
  42. }
  43. .la-pacman {
  44. width: 32px;
  45. height: 32px;
  46. }
  47. .la-pacman > div:nth-child(1),
  48. .la-pacman > div:nth-child(2) {
  49. width: 0;
  50. height: 0;
  51. background: transparent;
  52. border-style: solid;
  53. border-width: 16px;
  54. border-right-color: transparent;
  55. border-radius: 100%;
  56. -webkit-animation: pacman-rotate-half-up 0.5s 0s infinite;
  57. -moz-animation: pacman-rotate-half-up 0.5s 0s infinite;
  58. -o-animation: pacman-rotate-half-up 0.5s 0s infinite;
  59. animation: pacman-rotate-half-up 0.5s 0s infinite;
  60. }
  61. .la-pacman > div:nth-child(2) {
  62. margin-top: -32px;
  63. -webkit-animation-name: pacman-rotate-half-down;
  64. -moz-animation-name: pacman-rotate-half-down;
  65. -o-animation-name: pacman-rotate-half-down;
  66. animation-name: pacman-rotate-half-down;
  67. }
  68. .la-pacman > div:nth-child(3),
  69. .la-pacman > div:nth-child(4),
  70. .la-pacman > div:nth-child(5),
  71. .la-pacman > div:nth-child(6) {
  72. position: absolute;
  73. top: 50%;
  74. left: 200%;
  75. width: 8px;
  76. height: 8px;
  77. border-radius: 100%;
  78. opacity: 0;
  79. -webkit-animation: pacman-balls 2s 0s infinite linear;
  80. -moz-animation: pacman-balls 2s 0s infinite linear;
  81. -o-animation: pacman-balls 2s 0s infinite linear;
  82. animation: pacman-balls 2s 0s infinite linear;
  83. }
  84. .la-pacman > div:nth-child(3) {
  85. -webkit-animation-delay: -1.44s;
  86. -moz-animation-delay: -1.44s;
  87. -o-animation-delay: -1.44s;
  88. animation-delay: -1.44s;
  89. }
  90. .la-pacman > div:nth-child(4) {
  91. -webkit-animation-delay: -1.94s;
  92. -moz-animation-delay: -1.94s;
  93. -o-animation-delay: -1.94s;
  94. animation-delay: -1.94s;
  95. }
  96. .la-pacman > div:nth-child(5) {
  97. -webkit-animation-delay: -2.44s;
  98. -moz-animation-delay: -2.44s;
  99. -o-animation-delay: -2.44s;
  100. animation-delay: -2.44s;
  101. }
  102. .la-pacman > div:nth-child(6) {
  103. -webkit-animation-delay: -2.94s;
  104. -moz-animation-delay: -2.94s;
  105. -o-animation-delay: -2.94s;
  106. animation-delay: -2.94s;
  107. }
  108. .la-pacman.la-sm {
  109. width: 16px;
  110. height: 16px;
  111. }
  112. .la-pacman.la-sm > div:nth-child(1),
  113. .la-pacman.la-sm > div:nth-child(2) {
  114. border-width: 8px;
  115. }
  116. .la-pacman.la-sm > div:nth-child(2) {
  117. margin-top: -16px;
  118. }
  119. .la-pacman.la-sm > div:nth-child(3),
  120. .la-pacman.la-sm > div:nth-child(4),
  121. .la-pacman.la-sm > div:nth-child(5),
  122. .la-pacman.la-sm > div:nth-child(6) {
  123. width: 4px;
  124. height: 4px;
  125. }
  126. .la-pacman.la-2x {
  127. width: 64px;
  128. height: 64px;
  129. }
  130. .la-pacman.la-2x > div:nth-child(1),
  131. .la-pacman.la-2x > div:nth-child(2) {
  132. border-width: 32px;
  133. }
  134. .la-pacman.la-2x > div:nth-child(2) {
  135. margin-top: -64px;
  136. }
  137. .la-pacman.la-2x > div:nth-child(3),
  138. .la-pacman.la-2x > div:nth-child(4),
  139. .la-pacman.la-2x > div:nth-child(5),
  140. .la-pacman.la-2x > div:nth-child(6) {
  141. width: 16px;
  142. height: 16px;
  143. }
  144. @-webkit-keyframes pacman-rotate-half-up {
  145. 0%,
  146. 100% {
  147. -webkit-transform: rotate(270deg);
  148. transform: rotate(270deg);
  149. }
  150. 50% {
  151. -webkit-transform: rotate(360deg);
  152. transform: rotate(360deg);
  153. }
  154. }
  155. @-moz-keyframes pacman-rotate-half-up {
  156. 0%,
  157. 100% {
  158. -moz-transform: rotate(270deg);
  159. transform: rotate(270deg);
  160. }
  161. 50% {
  162. -moz-transform: rotate(360deg);
  163. transform: rotate(360deg);
  164. }
  165. }
  166. @-o-keyframes pacman-rotate-half-up {
  167. 0%,
  168. 100% {
  169. -o-transform: rotate(270deg);
  170. transform: rotate(270deg);
  171. }
  172. 50% {
  173. -o-transform: rotate(360deg);
  174. transform: rotate(360deg);
  175. }
  176. }
  177. @keyframes pacman-rotate-half-up {
  178. 0%,
  179. 100% {
  180. -webkit-transform: rotate(270deg);
  181. -moz-transform: rotate(270deg);
  182. -o-transform: rotate(270deg);
  183. transform: rotate(270deg);
  184. }
  185. 50% {
  186. -webkit-transform: rotate(360deg);
  187. -moz-transform: rotate(360deg);
  188. -o-transform: rotate(360deg);
  189. transform: rotate(360deg);
  190. }
  191. }
  192. @-webkit-keyframes pacman-rotate-half-down {
  193. 0%,
  194. 100% {
  195. -webkit-transform: rotate(90deg);
  196. transform: rotate(90deg);
  197. }
  198. 50% {
  199. -webkit-transform: rotate(0deg);
  200. transform: rotate(0deg);
  201. }
  202. }
  203. @-moz-keyframes pacman-rotate-half-down {
  204. 0%,
  205. 100% {
  206. -moz-transform: rotate(90deg);
  207. transform: rotate(90deg);
  208. }
  209. 50% {
  210. -moz-transform: rotate(0deg);
  211. transform: rotate(0deg);
  212. }
  213. }
  214. @-o-keyframes pacman-rotate-half-down {
  215. 0%,
  216. 100% {
  217. -o-transform: rotate(90deg);
  218. transform: rotate(90deg);
  219. }
  220. 50% {
  221. -o-transform: rotate(0deg);
  222. transform: rotate(0deg);
  223. }
  224. }
  225. @keyframes pacman-rotate-half-down {
  226. 0%,
  227. 100% {
  228. -webkit-transform: rotate(90deg);
  229. -moz-transform: rotate(90deg);
  230. -o-transform: rotate(90deg);
  231. transform: rotate(90deg);
  232. }
  233. 50% {
  234. -webkit-transform: rotate(0deg);
  235. -moz-transform: rotate(0deg);
  236. -o-transform: rotate(0deg);
  237. transform: rotate(0deg);
  238. }
  239. }
  240. @-webkit-keyframes pacman-balls {
  241. 0% {
  242. left: 200%;
  243. opacity: 0;
  244. -webkit-transform: translateY(-50%);
  245. transform: translateY(-50%);
  246. }
  247. 5% {
  248. opacity: 0.5;
  249. }
  250. 66% {
  251. opacity: 1;
  252. }
  253. 67% {
  254. opacity: 0;
  255. }
  256. 100% {
  257. left: 0;
  258. -webkit-transform: translateY(-50%);
  259. transform: translateY(-50%);
  260. }
  261. }
  262. @-moz-keyframes pacman-balls {
  263. 0% {
  264. left: 200%;
  265. opacity: 0;
  266. -moz-transform: translateY(-50%);
  267. transform: translateY(-50%);
  268. }
  269. 5% {
  270. opacity: 0.5;
  271. }
  272. 66% {
  273. opacity: 1;
  274. }
  275. 67% {
  276. opacity: 0;
  277. }
  278. 100% {
  279. left: 0;
  280. -moz-transform: translateY(-50%);
  281. transform: translateY(-50%);
  282. }
  283. }
  284. @-o-keyframes pacman-balls {
  285. 0% {
  286. left: 200%;
  287. opacity: 0;
  288. -o-transform: translateY(-50%);
  289. transform: translateY(-50%);
  290. }
  291. 5% {
  292. opacity: 0.5;
  293. }
  294. 66% {
  295. opacity: 1;
  296. }
  297. 67% {
  298. opacity: 0;
  299. }
  300. 100% {
  301. left: 0;
  302. -o-transform: translateY(-50%);
  303. transform: translateY(-50%);
  304. }
  305. }
  306. @keyframes pacman-balls {
  307. 0% {
  308. left: 200%;
  309. opacity: 0;
  310. -webkit-transform: translateY(-50%);
  311. -moz-transform: translateY(-50%);
  312. -o-transform: translateY(-50%);
  313. transform: translateY(-50%);
  314. }
  315. 5% {
  316. opacity: 0.5;
  317. }
  318. 66% {
  319. opacity: 1;
  320. }
  321. 67% {
  322. opacity: 0;
  323. }
  324. 100% {
  325. left: 0;
  326. -webkit-transform: translateY(-50%);
  327. -moz-transform: translateY(-50%);
  328. -o-transform: translateY(-50%);
  329. transform: translateY(-50%);
  330. }
  331. }
  332. </style>
  333. </head>
  334. <body>
  335. <noscript>
  336. <strong>
  337. We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  338. Please enable it to continue.
  339. </strong>
  340. </noscript>
  341. <div id="pageInitLoading">
  342. <div class="la-pacman la-2x">
  343. <div></div>
  344. <div></div>
  345. <div></div>
  346. <div></div>
  347. <div></div>
  348. <div></div>
  349. </div>
  350. </div>
  351. <div id="popContainer">
  352. <div id="app"></div>
  353. </div>
  354. <!-- require cdn assets js -->
  355. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
  356. <script type="text/javascript" src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  357. <% } %>
  358. <!-- built files will be auto injected -->
  359. </body>
  360. </html>