oops-ui 0.0.13 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/LICENSE +13 -1
  2. package/README.md +139 -0
  3. package/client.mjs +10 -0
  4. package/client.mjs.map +1 -0
  5. package/index.mjs +3 -0
  6. package/layoutUtil.mjs +10 -0
  7. package/layoutUtil.mjs.map +1 -0
  8. package/package.json +57 -108
  9. package/server.mjs +8 -0
  10. package/server.mjs.map +1 -0
  11. package/styles/common.css +1 -0
  12. package/styles/common.scss +131 -0
  13. package/styles/flex.scss +38 -0
  14. package/styles/header.scss +54 -0
  15. package/styles/image.scss +10 -0
  16. package/styles/input.scss +131 -0
  17. package/styles/loading-keyframes.scss +242 -0
  18. package/styles/reset.css +1 -0
  19. package/styles/reset.scss +94 -0
  20. package/styles/respond.scss +54 -0
  21. package/styles/root-normal-dark.scss +85 -0
  22. package/styles/root-normal-light.scss +83 -0
  23. package/styles/root-weird-dark.scss +1 -0
  24. package/styles/root.scss +326 -0
  25. package/styles/text.scss +61 -0
  26. package/styles/vars-color.scss +295 -0
  27. package/styles/vars-size.scss +6 -0
  28. package/type/components/ThemeContext/index.d.ts +25 -0
  29. package/type/components/ThemeContext/types.d.ts +28 -0
  30. package/type/components/button/button.d.ts +10 -0
  31. package/type/components/button/index.d.ts +9 -0
  32. package/type/components/image/index.d.ts +11 -0
  33. package/type/components/image/types.d.ts +13 -0
  34. package/type/components/image/useSrcChange.d.ts +11 -0
  35. package/type/components/layout/content.d.ts +17 -0
  36. package/type/components/layout/footer.d.ts +21 -0
  37. package/type/components/layout/get-value.d.ts +10 -0
  38. package/type/components/layout/header.d.ts +23 -0
  39. package/type/components/layout/index.d.ts +8 -0
  40. package/type/components/layout/is-fragment.d.ts +9 -0
  41. package/type/components/layout/layout.d.ts +55 -0
  42. package/type/components/layout/sidebar.d.ts +29 -0
  43. package/type/components/layout/types.d.ts +101 -0
  44. package/type/components/marquee/MarqueeEle.d.ts +15 -0
  45. package/type/components/marquee/index.d.ts +7 -0
  46. package/type/components/marquee/type.d.ts +9 -0
  47. package/type/components/menu/index.d.ts +6 -0
  48. package/type/components/menu/menu.d.ts +6 -0
  49. package/type/components/ripples/Content.d.ts +8 -0
  50. package/type/components/ripples/LazyRippleEle.d.ts +42 -0
  51. package/type/components/ripples/RipplesEle.d.ts +42 -0
  52. package/type/components/ripples/index.d.ts +11 -0
  53. package/type/components/ripples/types.d.ts +17 -0
  54. package/type/components/ripples/useOptionUpdate.d.ts +12 -0
  55. package/type/components/shared/EnLayoutContent/index.d.ts +19 -0
  56. package/type/components/shared/EnLayoutContent/types.d.ts +17 -0
  57. package/type/components/switch/SwitchContainer.d.ts +7 -0
  58. package/type/components/switch/SwitchContent.d.ts +10 -0
  59. package/type/components/switch/SwitchLabel.d.ts +9 -0
  60. package/type/components/switch/index.d.ts +14 -0
  61. package/type/customHooks/use-xcn/index.d.ts +14 -0
  62. package/type/customHooks/useAnimationFrame.d.ts +58 -0
  63. package/type/customHooks/useInputIsComposing.d.ts +44 -0
  64. package/type/customHooks/useRipples/buildBackground/create-background-color.d.ts +9 -0
  65. package/type/customHooks/useRipples/buildBackground/create-linear-gradient.d.ts +9 -0
  66. package/type/customHooks/useRipples/buildBackground/default-background/_createImageData.d.ts +13 -0
  67. package/type/customHooks/useRipples/buildBackground/default-background/circleDataList.d.ts +24 -0
  68. package/type/customHooks/useRipples/buildBackground/default-background/createCanvasElementBySize.d.ts +8 -0
  69. package/type/customHooks/useRipples/buildBackground/default-background/createDefault.d.ts +8 -0
  70. package/type/customHooks/useRipples/buildBackground/default-background/index.d.ts +18 -0
  71. package/type/customHooks/useRipples/buildBackground/load-image.d.ts +19 -0
  72. package/type/customHooks/useRipples/buildBackground/run-side.d.ts +15 -0
  73. package/type/customHooks/useRipples/buildBackground/type.d.ts +37 -0
  74. package/type/customHooks/useRipples/buildBackground/utils/bind-image.d.ts +10 -0
  75. package/type/customHooks/useRipples/buildBackground/utils/create-canvas-element.d.ts +9 -0
  76. package/type/customHooks/useRipples/buildBackground/utils/create-image-by-src.d.ts +8 -0
  77. package/type/customHooks/useRipples/buildBackground/utils/get-background-style.d.ts +9 -0
  78. package/type/customHooks/useRipples/buildBackground/utils/hide-css-background.d.ts +16 -0
  79. package/type/customHooks/useRipples/buildBackground/utils/restore-css-background.d.ts +13 -0
  80. package/type/customHooks/useRipples/callback/can-side.d.ts +14 -0
  81. package/type/customHooks/useRipples/callback/destroy.d.ts +9 -0
  82. package/type/customHooks/useRipples/callback/drop.d.ts +9 -0
  83. package/type/customHooks/useRipples/callback/extract-url.d.ts +8 -0
  84. package/type/customHooks/useRipples/callback/fade.d.ts +9 -0
  85. package/type/customHooks/useRipples/callback/get-new-image.d.ts +14 -0
  86. package/type/customHooks/useRipples/callback/reload-background.d.ts +12 -0
  87. package/type/customHooks/useRipples/callback/scale.d.ts +8 -0
  88. package/type/customHooks/useRipples/index.d.ts +45 -0
  89. package/type/customHooks/useRipples/init/index.d.ts +11 -0
  90. package/type/customHooks/useRipples/init/initEvent.d.ts +11 -0
  91. package/type/customHooks/useRipples/init/initShaders.d.ts +13 -0
  92. package/type/customHooks/useRipples/init/initTexture.d.ts +13 -0
  93. package/type/customHooks/useRipples/render/computeTextureBoundaries.d.ts +9 -0
  94. package/type/customHooks/useRipples/render/draw.d.ts +13 -0
  95. package/type/customHooks/useRipples/render/drawQuad.d.ts +13 -0
  96. package/{dist/types → type}/customHooks/useRipples/render/dropAtPointer.d.ts +8 -2
  97. package/type/customHooks/useRipples/render/index.d.ts +12 -0
  98. package/type/customHooks/useRipples/render/swapBufferIndices.d.ts +11 -0
  99. package/type/customHooks/useRipples/render/update.d.ts +11 -0
  100. package/type/customHooks/useRipples/rippersData/defaultData.d.ts +11 -0
  101. package/type/customHooks/useRipples/rippersData/fadeData.d.ts +51 -0
  102. package/{dist/types → type}/customHooks/useRipples/rippersData/index.d.ts +24 -18
  103. package/{dist/types → type}/customHooks/useRipples/rippersData/loadConfig.d.ts +12 -2
  104. package/type/customHooks/useRipples/rippersData/renderData.d.ts +80 -0
  105. package/type/customHooks/useRipples/rippersData/useOptions.d.ts +91 -0
  106. package/{dist/types → type}/customHooks/useRipples/rippersData/vertexSource.d.ts +17 -11
  107. package/type/customHooks/useRipples/ripple.html.d.ts +12 -0
  108. package/type/customHooks/useRipples/ripplesClass.d.ts +57 -0
  109. package/{dist/types → type}/customHooks/useRipples/tools.d.ts +18 -8
  110. package/type/customHooks/useRipples/types.d.ts +209 -0
  111. package/type/customHooks/useRipples/use-lazy-ripple.d.ts +15 -0
  112. package/{dist/types → type}/customHooks/useTimeId.d.ts +10 -6
  113. package/type/dog.d.ts +8 -0
  114. package/type/index.client.d.ts +20 -0
  115. package/type/index.d.ts +8 -0
  116. package/type/index.server.d.ts +8 -0
  117. package/type/storage/main-logic .d.ts +26 -0
  118. package/type/storage/storage-store.d.ts +14 -0
  119. package/type/utilities/cookie.d.ts +21 -0
  120. package/type/utilities/sys.d.ts +41 -0
  121. package/ReadMe.md +0 -17
  122. package/dist/BackgroundRipple/index.cjs +0 -1
  123. package/dist/BackgroundRipple/index.mjs +0 -1
  124. package/dist/index.cjs +0 -1
  125. package/dist/index.js +0 -1
  126. package/dist/index.mjs +0 -1
  127. package/dist/styles/common.css +0 -353
  128. package/dist/styles/common.scss +0 -504
  129. package/dist/types/components/button/button.d.ts +0 -2
  130. package/dist/types/components/button/index.d.ts +0 -3
  131. package/dist/types/components/button/style/index.d.ts +0 -1
  132. package/dist/types/components/index.d.ts +0 -1
  133. package/dist/types/components/layout/header.d.ts +0 -4
  134. package/dist/types/components/layout/index.d.ts +0 -0
  135. package/dist/types/components/layout/interface.d.ts +0 -8
  136. package/dist/types/components/layout/layout.d.ts +0 -14
  137. package/dist/types/components/menu/index.d.ts +0 -0
  138. package/dist/types/components/menu/menu.d.ts +0 -0
  139. package/dist/types/components/menu/style/index.d.ts +0 -0
  140. package/dist/types/components/ripples/RipplesEle.d.ts +0 -33
  141. package/dist/types/components/ripples/index.d.ts +0 -2
  142. package/dist/types/components/ripples/style/index.d.ts +0 -0
  143. package/dist/types/customHooks/index.d.ts +0 -5
  144. package/dist/types/customHooks/useAnimationFrame.d.ts +0 -41
  145. package/dist/types/customHooks/useInputIsComposing.d.ts +0 -45
  146. package/dist/types/customHooks/useRipples/defaultData.d.ts +0 -5
  147. package/dist/types/customHooks/useRipples/index.d.ts +0 -46
  148. package/dist/types/customHooks/useRipples/init/hideCssBackground.d.ts +0 -9
  149. package/dist/types/customHooks/useRipples/init/initEvent.d.ts +0 -5
  150. package/dist/types/customHooks/useRipples/init/initGL.d.ts +0 -5
  151. package/dist/types/customHooks/useRipples/init/initShaders.d.ts +0 -7
  152. package/dist/types/customHooks/useRipples/init/initTexture.d.ts +0 -7
  153. package/dist/types/customHooks/useRipples/init/loadImage.d.ts +0 -13
  154. package/dist/types/customHooks/useRipples/render/computeTextureBoundaries.d.ts +0 -7
  155. package/dist/types/customHooks/useRipples/render/drawQuad.d.ts +0 -7
  156. package/dist/types/customHooks/useRipples/render/render.d.ts +0 -7
  157. package/dist/types/customHooks/useRipples/render/step.d.ts +0 -6
  158. package/dist/types/customHooks/useRipples/render/swapBufferIndices.d.ts +0 -2
  159. package/dist/types/customHooks/useRipples/render/update.d.ts +0 -2
  160. package/dist/types/customHooks/useRipples/rippersData/createImageData.d.ts +0 -4
  161. package/dist/types/customHooks/useRipples/rippersData/renderData.d.ts +0 -85
  162. package/dist/types/customHooks/useRipples/ripple.html.d.ts +0 -3
  163. package/dist/types/customHooks/useRipples/ripplesClass.d.ts +0 -120
  164. package/dist/types/index.d.ts +0 -3
  165. package/dist/useAnimationFrame/index.cjs +0 -1
  166. package/dist/useAnimationFrame/index.mjs +0 -1
  167. package/dist/useInputIsComposing/index.cjs +0 -1
  168. package/dist/useInputIsComposing/index.mjs +0 -1
  169. package/dist/useRipples/index.cjs +0 -1
  170. package/dist/useRipples/index.mjs +0 -1
  171. package/dist/useTimeId/index.cjs +0 -1
  172. package/dist/useTimeId/index.mjs +0 -1
@@ -1,353 +0,0 @@
1
- @charset "UTF-8";
2
- :root {
3
- --box-shadow: 0 5px 13px 0 rgba(10, 15, 71, 0.2);
4
- --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono",
5
- "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
6
- --mi-white: #ffffff;
7
- --mi-mi-white: #f0f2e6;
8
- --mi-dark-blue: #465e65;
9
- --mi-mi-yellow: #c2c6ae;
10
- --mi-orange: #fa0;
11
- --mi-green: #0b8;
12
- --mi-red: #f16;
13
- /** */
14
- --mi-orange-yellow: #c99e8c;
15
- /*(橘红)*/
16
- --mi-orange-red: #900022;
17
- --mi-light-red: #d80010;
18
- --mi-dark-ash: #6c8650;
19
- --mi-mi-pretty: #b2b6b6;
20
- --mi-light-black: #777;
21
- --mi-black: #000;
22
- --mi-dust: #999;
23
- }
24
-
25
- *,
26
- a,
27
- body,
28
- abbr,
29
- address,
30
- area,
31
- div,
32
- img,
33
- input,
34
- p,
35
- mark,
36
- html,
37
- span {
38
- position: relative;
39
- left: auto;
40
- top: auto;
41
- box-sizing: border-box;
42
- font: inherit;
43
- vertical-align: baseline;
44
- -webkit-user-drag: none;
45
- -webkit-user-select: none;
46
- user-select: none;
47
- }
48
-
49
- body,
50
- html {
51
- font-size: 14px;
52
- line-height: 1.4rem;
53
- margin: 0;
54
- padding: 0;
55
- border: 0;
56
- }
57
-
58
- a {
59
- text-decoration: none;
60
- }
61
-
62
- ol,
63
- ul {
64
- list-style: none;
65
- }
66
-
67
- blockquote::before,
68
- blockquote::after,
69
- q::before,
70
- q::after {
71
- content: "";
72
- content: none;
73
- }
74
-
75
- table {
76
- border-collapse: collapse;
77
- border-spacing: 0;
78
- }
79
-
80
- input:focus-visible {
81
- outline: none;
82
- }
83
-
84
- input[type=button],
85
- .cursor-pointer {
86
- cursor: pointer;
87
- }
88
-
89
- /** 输入框 */
90
- input[type=text] {
91
- width: 200px;
92
- border-radius: 10px;
93
- background-color: #000;
94
- color: #0f9;
95
- }
96
- input[type=text]::placeholder {
97
- color: rgba(170, 255, 255, 0.6);
98
- }
99
- input[type=text]:focus::placeholder {
100
- color: transparent;
101
- }
102
-
103
- input[type=radio] {
104
- width: 0;
105
- height: 0;
106
- overflow: hidden;
107
- }
108
- input[type=radio] + label {
109
- padding-left: 15px;
110
- }
111
- input[type=radio] + label::before, input[type=radio] + label::after {
112
- content: "";
113
- position: absolute;
114
- border-radius: 50%;
115
- top: 50%;
116
- transform: translate(0, -50%);
117
- overflow: hidden;
118
- }
119
- input[type=radio] + label::before {
120
- left: 0px;
121
- height: 8px;
122
- width: 8px;
123
- box-shadow: 1px 1px 3px #000;
124
- z-index: 1;
125
- }
126
- input[type=radio] + label::after {
127
- font-size: 8px;
128
- line-height: 8px;
129
- z-index: 2;
130
- left: 0px;
131
- height: 8px;
132
- width: 8px;
133
- color: #fff;
134
- background-color: #000;
135
- clip-path: circle(0%);
136
- transition: all 0.3s;
137
- }
138
- input[type=radio]:checked {
139
- color: #f00;
140
- }
141
- input[type=radio]:checked + label {
142
- color: #0a3;
143
- }
144
- input[type=radio]:checked + label::before {
145
- box-shadow: 1px 1px 3px #0f3, -1px -1px 3px #0f3;
146
- }
147
- input[type=radio]:checked + label::after {
148
- background-color: #0a3;
149
- clip-path: circle(100%);
150
- transition: all 0.8s;
151
- }
152
-
153
- input[type=image] {
154
- -webkit-user-select: none;
155
- user-select: none;
156
- }
157
-
158
- .center {
159
- position: absolute;
160
- left: 50%;
161
- top: 50%;
162
- transform: translate(-50%, -50%);
163
- }
164
-
165
- img {
166
- -webkit-touch-callout: none;
167
- -webkit-user-select: none;
168
- -khtml-user-select: none;
169
- -moz-user-select: none;
170
- -ms-user-select: none;
171
- user-select: none;
172
- }
173
-
174
- /** 文本显示一行,超出点点点 */
175
- .textInOneLine {
176
- white-space: nowrap;
177
- text-overflow: ellipsis;
178
- overflow: hidden;
179
- word-break: break-all;
180
- }
181
-
182
- .textInOneLineHide {
183
- white-space: nowrap;
184
- text-overflow: clip;
185
- overflow: hidden;
186
- word-break: break-all;
187
- }
188
-
189
- /** 文本显示两行,超出点点点 */
190
- .textInTwoLine {
191
- overflow: hidden;
192
- text-overflow: ellipsis;
193
- display: -webkit-box;
194
- -webkit-line-clamp: 2;
195
- line-clamp: 2;
196
- -webkit-box-orient: vertical;
197
- }
198
-
199
- /* 彩色字 */
200
- .colorText {
201
- color: transparent;
202
- background-image: linear-gradient(45deg, #ff0, #0f0, #f00, #0ff, #00f, #f0f, #ff0);
203
- background-position: 0% 0%;
204
- background-size: 400% 200%;
205
- background-clip: text;
206
- animation: 6s ease-in 0s infinite colorText alternate;
207
- }
208
-
209
- .redB {
210
- background-color: #f12;
211
- }
212
-
213
- .floatLeft {
214
- float: left;
215
- }
216
-
217
- .floatRight,
218
- .float {
219
- float: right;
220
- }
221
-
222
- .clear {
223
- clear: both;
224
- }
225
-
226
- .loading {
227
- position: relative;
228
- width: 100%;
229
- height: 100%;
230
- background-color: transparent;
231
- background-image: radial-gradient(#f00, #f00 50%, transparent 50%, transparent), radial-gradient(#af1, #af1 50%, transparent 50%, transparent), radial-gradient(#0ff, #0ff 50%, transparent 50%, transparent), radial-gradient(#f0f, #f0f 50%, transparent 50%, transparent);
232
- background-repeat: no-repeat;
233
- animation: 2.4s ease-in-out 0s infinite loading;
234
- }
235
-
236
- @keyframes loading {
237
- 100%, 0% {
238
- background-size: 10% 10%, 10% 10%, 10% 10%, 10% 10%;
239
- background-position: 25% 45%, 41.7% 45%, 58.3% 45%, 75% 45%;
240
- }
241
- 20%, 80% {
242
- background-size: 2.5% 2.5%;
243
- background-position: 25% 45%;
244
- }
245
- 22% {
246
- background-size: 3.75% 3.75%, 2.5% 2.5%, 2.5% 2.5%, 2.5% 2.5%;
247
- background-position: 25.85% 38.53%, 25% 45%, 25% 45%, 25% 45%;
248
- }
249
- 24% {
250
- background-size: 5% 5%, 2.5% 2.5%, 2.5% 2.5%, 2.5% 2.5%;
251
- background-position: 28.35% 32.5%, 25% 45%, 25% 45%, 25% 45%;
252
- }
253
- 26% {
254
- background-size: 6.25% 6.25%, 2.5% 2.5%, 2.5% 2.5%, 2.5% 2.5%;
255
- background-position: 32.32% 27.32%, 25% 45%, 25% 45%, 25% 45%;
256
- }
257
- 28% {
258
- background-size: 7.5% 7.5%, 3.75% 3.75%, 2.5% 2.5%, 2.5% 2.5%;
259
- background-position: 37.5% 23.35%, 25.85% 38.53%, 25% 45%, 25% 45%;
260
- }
261
- 30% {
262
- background-size: 8.75% 8.75%, 5% 5%, 2.5% 2.5%, 2.5% 2.5%;
263
- background-position: 43.53% 20.85%, 28.35% 32.5%, 25% 45%, 25% 45%;
264
- }
265
- 32% {
266
- background-size: 10% 10%, 6.25% 6.25%, 3.75% 3.75%, 2.5% 2.5%;
267
- background-position: 50% 20%, 32.32% 27.32%, 25.85% 38.53%, 25% 45%;
268
- }
269
- 34% {
270
- background-size: 10% 10%, 7.5% 7.5%, 5% 5%, 2.5% 2.5%;
271
- background-position: 56.47% 20.85%, 37.32% 23.35%, 28.35% 32.5%, 25.85% 38.53%;
272
- }
273
- 36% {
274
- background-position: 62.4999992265% 23.3493644588%, 43.5295233332% 20.8518544873%, 32.3223302335% 27.3223307072%, 25.8518543139% 38.5295239803%;
275
- }
276
- 38% {
277
- background-position: 67.6776688192% 27.3223297598%, 49.9999993301% 20%, 37.4999996132% 23.3493651287%, 28.3493647937% 32.5000001934%;
278
- }
279
- 40% {
280
- background-position: 71.6506345364% 32.4999990331%, 56.4704753727% 20.8518541405%, 43.5295233332% 20.8518544873%, 32.3223302335% 27.3223307072%;
281
- }
282
- 42% {
283
- background-position: 74.1481453394% 38.5295226862%, 62.4999992265% 23.3493644588%, 49.9999993301% 20%, 37.4999996132% 23.3493651287%;
284
- }
285
- 44% {
286
- background-position: 75% 44.9999986603%, 67.6776688192% 27.3223297598%, 56.4704753727% 20.8518541405%, 43.5295233332% 20.8518544873%;
287
- }
288
- 46% {
289
- background-position: 74.1481460329% 51.4704747256%, 71.6506345364% 32.4999990331%, 62.4999992265% 23.3493644588%, 49.9999993301% 20%;
290
- }
291
- 48% {
292
- background-position: 71.6506358761% 57.4999986464%, 74.1481453394% 38.5295226862%, 67.6776688192% 27.3223297598%, 56.4704753727% 20.8518541405%;
293
- }
294
- 50% {
295
- background-position: 67.6776707138% 62.6776683455%, 75% 44.9999986603%, 71.6506345364% 32.4999990331%, 62.4999992265% 23.3493644588%;
296
- }
297
- 52% {
298
- background-position: 62.500001547% 66.6506342014%, 74.1481460329% 51.4704747256%, 74.1481453394% 38.5295226862%, 67.6776688192% 27.3223297598%;
299
- }
300
- 54% {
301
- background-position: 56.4704779609% 69.148145166%, 71.6506358761% 57.4999986464%, 75% 44.9999986603%, 71.6506345364% 32.4999990331%;
302
- }
303
- 56% {
304
- background-position: 50.0000020096% 70%, 67.6776707138% 62.6776683455%, 74.1481460329% 51.4704747256%, 74.1481453394% 38.5295226862%;
305
- }
306
- 58% {
307
- background-position: 43.5295259214% 69.1481462062%, 62.500001547% 66.6506342014%, 71.6506358761% 57.4999986464%, 75% 44.9999986603%;
308
- }
309
- 60% {
310
- background-position: 37.5000019338% 66.6506362111%, 56.4704779609% 69.148145166%, 67.6776707138% 62.6776683455%, 74.1481460329% 51.4704747256%;
311
- }
312
- 62% {
313
- background-position: 32.3223321282% 62.6776711875%, 50.0000020096% 70%, 62.500001547% 66.6506342014%, 71.6506358761% 57.4999986464%;
314
- }
315
- 64% {
316
- background-position: 28.3493661335% 57.5000021271%, 43.5295259214% 69.1481462062%, 56.4704779609% 69.148145166%, 67.6776707138% 62.6776683455%;
317
- }
318
- 66% {
319
- background-position: 25.8518550074% 51.4704786079%, 37.5000019338% 66.6506362111%, 50.0000020096% 70%, 62.500001547% 66.6506342014%;
320
- }
321
- 68% {
322
- background-size: 10% 10%, 7.5% 7.5%, 5% 5%, 2.5% 2.5%;
323
- background-position: 25% 45%, 28.35% 57.45%, 37.45% 66.65%, 48% 70%;
324
- }
325
- 70% {
326
- background-size: 8.75% 8.75%, 7.5% 7.5%, 5% 5%, 2.5% 2.5%;
327
- background-position: 25% 45%, 25.85% 51.47%, 32.32% 62.68%, 43.53% 69.15%;
328
- }
329
- 72% {
330
- background-size: 7.5% 7.5%, 7.5% 7.5%, 5% 5%, 2.5% 2.5%;
331
- background-position: 25% 45%, 25% 45%, 28.35% 57.45%, 37.45% 66.65%;
332
- }
333
- 74% {
334
- background-size: 6.25% 6.25%, 6.25% 6.25%, 5% 5%, 2.5% 2.5%;
335
- background-position: 25% 45%, 25% 45%, 25.85% 51.47%, 32.32% 62.68%;
336
- }
337
- 76% {
338
- background-size: 5% 5%, 5% 5%, 5% 5%, 2.5% 2.5%;
339
- background-position: 25% 45%, 25% 45%, 25% 45%, 28.35% 57.45%;
340
- }
341
- 78% {
342
- background-size: 3.75% 3.75%, 3.75% 3.75%, 3.75% 3.75%, 2.5% 2.5%;
343
- background-position: 25% 45%, 25% 45%, 25% 45%, 25.85% 51.47%;
344
- }
345
- }
346
- @keyframes colorText {
347
- 0% {
348
- background-position: 400% 0%;
349
- }
350
- 100% {
351
- background-position: 0% 0%;
352
- }
353
- }