index.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <!DOCTYPE html>
  2. <html>
  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. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
  8. <link rel="shortcut icon" href="<%= webpackConfig.output.publicPath %>favicon.ico">
  9. <title>FormMaking</title>
  10. <meta name="description" content="Form designer based on Vue, makes form development simple and efficient">
  11. <meta name="keywords" content="Form designer,Form Builder,form,vue,rapid development ,Form generation,Drag and drop forms, forms, components, background">
  12. <style>
  13. html,body{
  14. height: 100%;
  15. }
  16. #app{
  17. height: 100%;
  18. position: relative;
  19. }
  20. .lds-roller {
  21. display: inline-block;
  22. position: relative;
  23. width: 64px;
  24. height: 64px;
  25. }
  26. .lds-roller div {
  27. animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  28. transform-origin: 32px 32px;
  29. }
  30. .lds-roller div:after {
  31. content: " ";
  32. display: block;
  33. position: absolute;
  34. width: 6px;
  35. height: 6px;
  36. border-radius: 50%;
  37. background: #409EFF;
  38. margin: -3px 0 0 -3px;
  39. }
  40. .lds-roller div:nth-child(1) {
  41. animation-delay: -0.036s;
  42. }
  43. .lds-roller div:nth-child(1):after {
  44. top: 50px;
  45. left: 50px;
  46. }
  47. .lds-roller div:nth-child(2) {
  48. animation-delay: -0.072s;
  49. }
  50. .lds-roller div:nth-child(2):after {
  51. top: 54px;
  52. left: 45px;
  53. }
  54. .lds-roller div:nth-child(3) {
  55. animation-delay: -0.108s;
  56. }
  57. .lds-roller div:nth-child(3):after {
  58. top: 57px;
  59. left: 39px;
  60. }
  61. .lds-roller div:nth-child(4) {
  62. animation-delay: -0.144s;
  63. }
  64. .lds-roller div:nth-child(4):after {
  65. top: 58px;
  66. left: 32px;
  67. }
  68. .lds-roller div:nth-child(5) {
  69. animation-delay: -0.18s;
  70. }
  71. .lds-roller div:nth-child(5):after {
  72. top: 57px;
  73. left: 25px;
  74. }
  75. .lds-roller div:nth-child(6) {
  76. animation-delay: -0.216s;
  77. }
  78. .lds-roller div:nth-child(6):after {
  79. top: 54px;
  80. left: 19px;
  81. }
  82. .lds-roller div:nth-child(7) {
  83. animation-delay: -0.252s;
  84. }
  85. .lds-roller div:nth-child(7):after {
  86. top: 50px;
  87. left: 14px;
  88. }
  89. .lds-roller div:nth-child(8) {
  90. animation-delay: -0.288s;
  91. }
  92. .lds-roller div:nth-child(8):after {
  93. top: 45px;
  94. left: 10px;
  95. }
  96. @keyframes lds-roller {
  97. 0% {
  98. transform: rotate(0deg);
  99. }
  100. 100% {
  101. transform: rotate(360deg);
  102. }
  103. }
  104. </style>
  105. <!-- Global site tag (gtag.js) - Google Analytics -->
  106. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-145160307-3"></script>
  107. <script>
  108. window.dataLayer = window.dataLayer || [];
  109. function gtag(){dataLayer.push(arguments);}
  110. gtag('js', new Date());
  111. gtag('config', 'UA-145160307-3');
  112. </script>
  113. </head>
  114. <body>
  115. <div id="app">
  116. <div style="height: 100%; width: 100%; display: flex; justify-content: center; align-items: center;">
  117. <div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
  118. </div>
  119. </div>
  120. <!-- built files will be auto injected -->
  121. <script>
  122. var _hmt = _hmt || [];
  123. (function() {
  124. var hm = document.createElement("script");
  125. hm.src = "https://hm.baidu.com/hm.js?8cde406621c307ce36787b94c2dac09b";
  126. var s = document.getElementsByTagName("script")[0];
  127. s.parentNode.insertBefore(hm, s);
  128. })();
  129. </script>
  130. </body>
  131. </html>