123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <title><%= process.env.VUE_APP_NAME %></title>
- <!-- require cdn assets css -->
- <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
- <link rel="stylesheet" href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" />
- <% } %>
- <style type="text/css">
- #pageInitLoading {
- top: 50%;
- left: 50%;
- position: absolute;
- -webkit-transform: translateY(-50%) translateX(-50%);
- transform: translateY(-50%) translateX(-50%);
- z-index: 100;
- }
- .la-pacman,
- .la-pacman > div {
- position: relative;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .la-pacman {
- display: block;
- font-size: 0;
- color: #1890ff;
- }
- .la-pacman.la-dark {
- color: #333;
- }
- .la-pacman > div {
- display: inline-block;
- float: none;
- background-color: currentColor;
- border: 0 solid currentColor;
- }
- .la-pacman {
- width: 32px;
- height: 32px;
- }
- .la-pacman > div:nth-child(1),
- .la-pacman > div:nth-child(2) {
- width: 0;
- height: 0;
- background: transparent;
- border-style: solid;
- border-width: 16px;
- border-right-color: transparent;
- border-radius: 100%;
- -webkit-animation: pacman-rotate-half-up 0.5s 0s infinite;
- -moz-animation: pacman-rotate-half-up 0.5s 0s infinite;
- -o-animation: pacman-rotate-half-up 0.5s 0s infinite;
- animation: pacman-rotate-half-up 0.5s 0s infinite;
- }
- .la-pacman > div:nth-child(2) {
- margin-top: -32px;
- -webkit-animation-name: pacman-rotate-half-down;
- -moz-animation-name: pacman-rotate-half-down;
- -o-animation-name: pacman-rotate-half-down;
- animation-name: pacman-rotate-half-down;
- }
- .la-pacman > div:nth-child(3),
- .la-pacman > div:nth-child(4),
- .la-pacman > div:nth-child(5),
- .la-pacman > div:nth-child(6) {
- position: absolute;
- top: 50%;
- left: 200%;
- width: 8px;
- height: 8px;
- border-radius: 100%;
- opacity: 0;
- -webkit-animation: pacman-balls 2s 0s infinite linear;
- -moz-animation: pacman-balls 2s 0s infinite linear;
- -o-animation: pacman-balls 2s 0s infinite linear;
- animation: pacman-balls 2s 0s infinite linear;
- }
- .la-pacman > div:nth-child(3) {
- -webkit-animation-delay: -1.44s;
- -moz-animation-delay: -1.44s;
- -o-animation-delay: -1.44s;
- animation-delay: -1.44s;
- }
- .la-pacman > div:nth-child(4) {
- -webkit-animation-delay: -1.94s;
- -moz-animation-delay: -1.94s;
- -o-animation-delay: -1.94s;
- animation-delay: -1.94s;
- }
- .la-pacman > div:nth-child(5) {
- -webkit-animation-delay: -2.44s;
- -moz-animation-delay: -2.44s;
- -o-animation-delay: -2.44s;
- animation-delay: -2.44s;
- }
- .la-pacman > div:nth-child(6) {
- -webkit-animation-delay: -2.94s;
- -moz-animation-delay: -2.94s;
- -o-animation-delay: -2.94s;
- animation-delay: -2.94s;
- }
- .la-pacman.la-sm {
- width: 16px;
- height: 16px;
- }
- .la-pacman.la-sm > div:nth-child(1),
- .la-pacman.la-sm > div:nth-child(2) {
- border-width: 8px;
- }
- .la-pacman.la-sm > div:nth-child(2) {
- margin-top: -16px;
- }
- .la-pacman.la-sm > div:nth-child(3),
- .la-pacman.la-sm > div:nth-child(4),
- .la-pacman.la-sm > div:nth-child(5),
- .la-pacman.la-sm > div:nth-child(6) {
- width: 4px;
- height: 4px;
- }
- .la-pacman.la-2x {
- width: 64px;
- height: 64px;
- }
- .la-pacman.la-2x > div:nth-child(1),
- .la-pacman.la-2x > div:nth-child(2) {
- border-width: 32px;
- }
- .la-pacman.la-2x > div:nth-child(2) {
- margin-top: -64px;
- }
- .la-pacman.la-2x > div:nth-child(3),
- .la-pacman.la-2x > div:nth-child(4),
- .la-pacman.la-2x > div:nth-child(5),
- .la-pacman.la-2x > div:nth-child(6) {
- width: 16px;
- height: 16px;
- }
- @-webkit-keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -webkit-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-moz-keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -moz-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -moz-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-o-keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -webkit-transform: rotate(270deg);
- -moz-transform: rotate(270deg);
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -webkit-transform: rotate(360deg);
- -moz-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-webkit-keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @-moz-keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -moz-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -moz-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @-o-keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -o-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -webkit-transform: rotate(0deg);
- -moz-transform: rotate(0deg);
- -o-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @-webkit-keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- @-moz-keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -moz-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -moz-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- @-o-keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- @keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>
- We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
- Please enable it to continue.
- </strong>
- </noscript>
- <div id="pageInitLoading">
- <div class="la-pacman la-2x">
- <div></div>
- <div></div>
- <div></div>
- <div></div>
- <div></div>
- <div></div>
- </div>
- </div>
- <div id="popContainer">
- <div id="app"></div>
- </div>
- <!-- require cdn assets js -->
- <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
- <script type="text/javascript" src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
- <% } %>
- <!-- built files will be auto injected -->
- </body>
- </html>
|