| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <!DOCTYPE html>
- <html>
- <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"> -->
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
- <link rel="shortcut icon" href="<%= webpackConfig.output.publicPath %>favicon.ico">
- <title>FormMaking</title>
- <meta name="description" content="Form designer based on Vue, makes form development simple and efficient">
- <meta name="keywords" content="Form designer,Form Builder,form,vue,rapid development ,Form generation,Drag and drop forms, forms, components, background">
- <style>
- html,body{
- height: 100%;
- }
- #app{
- height: 100%;
- position: relative;
-
- }
- .lds-roller {
- display: inline-block;
- position: relative;
- width: 64px;
- height: 64px;
- }
- .lds-roller div {
- animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
- transform-origin: 32px 32px;
- }
- .lds-roller div:after {
- content: " ";
- display: block;
- position: absolute;
- width: 6px;
- height: 6px;
- border-radius: 50%;
- background: #409EFF;
- margin: -3px 0 0 -3px;
- }
- .lds-roller div:nth-child(1) {
- animation-delay: -0.036s;
- }
- .lds-roller div:nth-child(1):after {
- top: 50px;
- left: 50px;
- }
- .lds-roller div:nth-child(2) {
- animation-delay: -0.072s;
- }
- .lds-roller div:nth-child(2):after {
- top: 54px;
- left: 45px;
- }
- .lds-roller div:nth-child(3) {
- animation-delay: -0.108s;
- }
- .lds-roller div:nth-child(3):after {
- top: 57px;
- left: 39px;
- }
- .lds-roller div:nth-child(4) {
- animation-delay: -0.144s;
- }
- .lds-roller div:nth-child(4):after {
- top: 58px;
- left: 32px;
- }
- .lds-roller div:nth-child(5) {
- animation-delay: -0.18s;
- }
- .lds-roller div:nth-child(5):after {
- top: 57px;
- left: 25px;
- }
- .lds-roller div:nth-child(6) {
- animation-delay: -0.216s;
- }
- .lds-roller div:nth-child(6):after {
- top: 54px;
- left: 19px;
- }
- .lds-roller div:nth-child(7) {
- animation-delay: -0.252s;
- }
- .lds-roller div:nth-child(7):after {
- top: 50px;
- left: 14px;
- }
- .lds-roller div:nth-child(8) {
- animation-delay: -0.288s;
- }
- .lds-roller div:nth-child(8):after {
- top: 45px;
- left: 10px;
- }
- @keyframes lds-roller {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-145160307-3"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'UA-145160307-3');
- </script>
- </head>
- <body>
- <div id="app">
- <div style="height: 100%; width: 100%; display: flex; justify-content: center; align-items: center;">
- <div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
- </div>
- </div>
- <!-- built files will be auto injected -->
- <script>
- var _hmt = _hmt || [];
- (function() {
- var hm = document.createElement("script");
- hm.src = "https://hm.baidu.com/hm.js?8cde406621c307ce36787b94c2dac09b";
- var s = document.getElementsByTagName("script")[0];
- s.parentNode.insertBefore(hm, s);
- })();
- </script>
- </body>
- </html>
|