@vysmo/text 0.1.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 (65) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +429 -0
  3. package/dist/animate.d.ts +28 -0
  4. package/dist/animate.d.ts.map +1 -0
  5. package/dist/animate.js +418 -0
  6. package/dist/animate.js.map +1 -0
  7. package/dist/index.d.ts +8 -0
  8. package/dist/index.d.ts.map +1 -0
  9. package/dist/index.js +6 -0
  10. package/dist/index.js.map +1 -0
  11. package/dist/presets/emphasis.d.ts +11 -0
  12. package/dist/presets/emphasis.d.ts.map +1 -0
  13. package/dist/presets/emphasis.js +54 -0
  14. package/dist/presets/emphasis.js.map +1 -0
  15. package/dist/presets/enter.d.ts +8 -0
  16. package/dist/presets/enter.d.ts.map +1 -0
  17. package/dist/presets/enter.js +58 -0
  18. package/dist/presets/enter.js.map +1 -0
  19. package/dist/presets/exit.d.ts +5 -0
  20. package/dist/presets/exit.d.ts.map +1 -0
  21. package/dist/presets/exit.js +30 -0
  22. package/dist/presets/exit.js.map +1 -0
  23. package/dist/presets/generated.d.ts +240 -0
  24. package/dist/presets/generated.d.ts.map +1 -0
  25. package/dist/presets/generated.js +3084 -0
  26. package/dist/presets/generated.js.map +1 -0
  27. package/dist/presets/index.d.ts +15 -0
  28. package/dist/presets/index.d.ts.map +1 -0
  29. package/dist/presets/index.js +43 -0
  30. package/dist/presets/index.js.map +1 -0
  31. package/dist/properties.d.ts +10 -0
  32. package/dist/properties.d.ts.map +1 -0
  33. package/dist/properties.js +80 -0
  34. package/dist/properties.js.map +1 -0
  35. package/dist/split.d.ts +21 -0
  36. package/dist/split.d.ts.map +1 -0
  37. package/dist/split.js +171 -0
  38. package/dist/split.js.map +1 -0
  39. package/dist/stagger.d.ts +13 -0
  40. package/dist/stagger.d.ts.map +1 -0
  41. package/dist/stagger.js +53 -0
  42. package/dist/stagger.js.map +1 -0
  43. package/dist/types.d.ts +204 -0
  44. package/dist/types.d.ts.map +1 -0
  45. package/dist/types.js +2 -0
  46. package/dist/types.js.map +1 -0
  47. package/package.json +56 -0
  48. package/src/__tests__/animate.test.ts +638 -0
  49. package/src/__tests__/presets.test.ts +87 -0
  50. package/src/__tests__/properties.test.ts +62 -0
  51. package/src/__tests__/split.test.ts +140 -0
  52. package/src/__tests__/ssr.test.ts +48 -0
  53. package/src/__tests__/stagger.test.ts +47 -0
  54. package/src/__tests__/types-check.ts +80 -0
  55. package/src/animate.ts +469 -0
  56. package/src/index.ts +38 -0
  57. package/src/presets/emphasis.ts +60 -0
  58. package/src/presets/enter.ts +64 -0
  59. package/src/presets/exit.ts +33 -0
  60. package/src/presets/generated.ts +3315 -0
  61. package/src/presets/index.ts +62 -0
  62. package/src/properties.ts +78 -0
  63. package/src/split.ts +180 -0
  64. package/src/stagger.ts +55 -0
  65. package/src/types.ts +245 -0
@@ -0,0 +1,3084 @@
1
+ // AUTO-GENERATED — do not edit by hand.
2
+ // Written by `scripts/ingest-generated.mjs` from `scripts/_staging.ts`.
3
+ // Run `pnpm --filter @vysmo/text ingest` to refresh.
4
+ //
5
+ // 229 presets ingested.
6
+ export const extendYScatter = {
7
+ name: "enter/extend-y-scatter",
8
+ split: "character",
9
+ stagger: 35,
10
+ animations: [
11
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "circ.out" },
12
+ { prop: "translateX", from: { min: -111.159, max: 111.159 }, to: 0, duration: 600, ease: "expo.out" },
13
+ { prop: "scaleY", from: { min: 0.08, max: 1 }, to: 1, duration: 850, ease: "back.out" },
14
+ { prop: "translateY", from: { min: -91.85, max: 91.85 }, to: 0, duration: 850, ease: "back.out" },
15
+ ],
16
+ };
17
+ export const extendXSnap = {
18
+ name: "enter/extend-x-snap",
19
+ split: "word",
20
+ stagger: 45,
21
+ animations: [
22
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "quart.out" },
23
+ { prop: "scaleX", from: 0.7, to: 1, duration: 900, ease: "expo.out", transformOrigin: { x: 0.5, y: 0.5 } },
24
+ { prop: "translateX", from: -60, to: 0, duration: 600, ease: "back.out" },
25
+ { prop: "blur", from: 9, to: 0, duration: 600, ease: "bounce.out" },
26
+ ],
27
+ };
28
+ export const tiltInSpring = {
29
+ name: "enter/tilt-in-spring",
30
+ split: "word",
31
+ stagger: 30,
32
+ staggerOrder: "random",
33
+ animations: [
34
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "elastic.out" },
35
+ { prop: "rotate", from: 30, to: 0, duration: 800, ease: "elastic.out" },
36
+ ],
37
+ };
38
+ export const leanInSpring = {
39
+ name: "enter/lean-in-spring",
40
+ split: "character",
41
+ stagger: 40,
42
+ staggerOrder: "end",
43
+ perspective: 1100,
44
+ animations: [
45
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "expo.out" },
46
+ { prop: "translateZ", from: -150, to: 0, duration: 750, ease: "quart.out" },
47
+ { prop: "rotate", from: 30, to: 0, duration: 850, ease: "elastic.out" },
48
+ { prop: "scaleX", from: 1.4, to: 1, duration: 800, ease: "bounce.out" },
49
+ ],
50
+ };
51
+ export const expandSnap = {
52
+ name: "enter/expand-snap",
53
+ split: "character",
54
+ stagger: 35,
55
+ animations: [
56
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "circ.out" },
57
+ { prop: "translateX", from: 70, to: 0, duration: 600, ease: "elastic.out" },
58
+ { prop: "scale", from: 0.75, to: 1, duration: 550, ease: "expo.out" },
59
+ ],
60
+ };
61
+ export const flipUpSpring = {
62
+ name: "enter/flip-up-spring",
63
+ split: "character",
64
+ stagger: 50,
65
+ staggerOrder: "edges",
66
+ perspective: 1000,
67
+ transformOrigin: { x: 0.5, y: 1 },
68
+ animations: [
69
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "elastic.out" },
70
+ { prop: "rotateY", from: -30, to: 0, duration: 850, ease: "expo.out", jitterDelay: 70, transformOrigin: { x: 0, y: 0.5 }, perspective: 1050 },
71
+ { prop: "rotateX", from: 60, to: 0, duration: 900, ease: "elastic.out" },
72
+ ],
73
+ };
74
+ export const slideScatter = {
75
+ name: "enter/slide-scatter",
76
+ split: "character",
77
+ stagger: 50,
78
+ animations: [
79
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "quart.out" },
80
+ { prop: "translateX", from: 30, to: 0, duration: 800, ease: "sine.out" },
81
+ { prop: "skewX", from: { min: -16.561, max: 16.561 }, to: 0, duration: 550, ease: "power4.out" },
82
+ ],
83
+ };
84
+ export const soarSwarm = {
85
+ name: "enter/soar-swarm",
86
+ split: "character",
87
+ stagger: 55,
88
+ staggerOrder: "random",
89
+ animations: [
90
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "back.out" },
91
+ { prop: "translateY", from: -60, to: 0, duration: 650, ease: "power4.out" },
92
+ { prop: "blur", from: 10, to: 0, duration: 450, ease: "quart.out" },
93
+ ],
94
+ };
95
+ export const tunnel = {
96
+ name: "enter/tunnel",
97
+ split: "word",
98
+ stagger: 25,
99
+ perspective: 1150,
100
+ animations: [
101
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "expo.out" },
102
+ { prop: "translateZ", from: -250, to: 0, duration: 700, ease: "sine.out" },
103
+ { prop: "translateY", from: 40, to: 0, duration: 550, ease: "expo.out" },
104
+ ],
105
+ };
106
+ export const soarBounce = {
107
+ name: "enter/soar-bounce",
108
+ split: "word",
109
+ stagger: 45,
110
+ animations: [
111
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "back.out" },
112
+ { prop: "translateY", from: -50, to: 0, duration: 900, ease: "bounce.out" },
113
+ ],
114
+ };
115
+ export const stretchXKick = {
116
+ name: "enter/stretch-x-kick",
117
+ split: "character",
118
+ stagger: 50,
119
+ animations: [
120
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "cubic.out" },
121
+ { prop: "scaleX", from: 0.4, to: 1, duration: 800, ease: "back.out", jitterDelay: 60 },
122
+ { prop: "translateY", from: -50, to: 0, duration: 850, ease: "back.out" },
123
+ ],
124
+ };
125
+ export const slideBounce = {
126
+ name: "enter/slide-bounce",
127
+ split: "character",
128
+ stagger: 40,
129
+ staggerOrder: "end",
130
+ animations: [
131
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "sine.out" },
132
+ { prop: "translateX", from: 50, to: 0, duration: 800, ease: "bounce.out", jitterDelay: 40 },
133
+ ],
134
+ };
135
+ export const stretchXScatter = {
136
+ name: "enter/stretch-x-scatter",
137
+ split: "character",
138
+ stagger: 20,
139
+ staggerOrder: "end",
140
+ animations: [
141
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "sine.out" },
142
+ { prop: "scaleX", from: { min: 0.1, max: 1.25 }, to: 1, duration: 600, ease: "quart.out", transformOrigin: { x: 0.5, y: 1 } },
143
+ { prop: "translateY", from: -60, to: 0, duration: 550, ease: "back.out" },
144
+ ],
145
+ };
146
+ export const glideScatter = {
147
+ name: "enter/glide-scatter",
148
+ split: "word",
149
+ stagger: 35,
150
+ animations: [
151
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "quart.out" },
152
+ { prop: "translateX", from: { min: -101.332, max: 101.332 }, to: 0, duration: 700, ease: "elastic.out" },
153
+ ],
154
+ };
155
+ export const growScatter = {
156
+ name: "enter/grow-scatter",
157
+ split: "character",
158
+ stagger: 50,
159
+ staggerOrder: "end",
160
+ animations: [
161
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "expo.out" },
162
+ { prop: "blur", from: { min: 2.6, max: 32.5 }, to: 0, duration: 550, ease: "elastic.out" },
163
+ { prop: "scale", from: 0.35, to: 1, duration: 750, ease: "back.out" },
164
+ { prop: "skewX", from: -15, to: 0, duration: 500, ease: "elastic.out", jitterDelay: 150 },
165
+ { prop: "translateX", from: -150, to: 0, duration: 550, ease: "circ.out" },
166
+ ],
167
+ };
168
+ export const unfurlYScatter = {
169
+ name: "enter/unfurl-y-scatter",
170
+ split: "character",
171
+ stagger: 35,
172
+ staggerOrder: "random",
173
+ animations: [
174
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "expo.out" },
175
+ { prop: "translateY", from: -90, to: 0, duration: 750, ease: "elastic.out" },
176
+ { prop: "scaleY", from: { min: 0.3, max: 3.75 }, to: 1, duration: 500, ease: "quart.out", transformOrigin: { x: 1, y: 0.5, z: 100 } },
177
+ ],
178
+ };
179
+ export const pivotCurl = {
180
+ name: "enter/pivot-curl",
181
+ split: "character",
182
+ stagger: 55,
183
+ perspective: 650,
184
+ transformOrigin: { x: 0.5, y: 0.5 },
185
+ animations: [
186
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "sine.out" },
187
+ { prop: "scaleY", from: 0.1, to: 1, duration: 700, ease: "quart.out", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
188
+ { prop: "rotateY", from: -420, to: 0, duration: 750, ease: "sine.out" },
189
+ { prop: "blur", from: 7, to: 0, duration: 750, ease: "power4.out", jitterDelay: 310 },
190
+ { prop: "translateY", from: -180, to: 0, duration: 750, ease: "power4.out", jitterDelay: 260 },
191
+ ],
192
+ };
193
+ export const stretchYScatter = {
194
+ name: "enter/stretch-y-scatter",
195
+ split: "character",
196
+ stagger: 60,
197
+ staggerOrder: "center",
198
+ animations: [
199
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "back.out" },
200
+ { prop: "blur", from: { min: 3, max: 37.5 }, to: 0, duration: 750, ease: "sine.out", jitterDelay: 230 },
201
+ { prop: "translateX", from: 90, to: 0, duration: 750, ease: "quart.out", jitterDelay: 280 },
202
+ { prop: "scaleY", from: 0.1, to: 1, duration: 550, ease: "sine.out", jitterDelay: 80, transformOrigin: { x: 0, y: 0 } },
203
+ { prop: "skewX", from: { min: -134.602, max: 134.602 }, to: 0, duration: 600, ease: "sine.out", transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
204
+ ],
205
+ };
206
+ export const leanInScatterCurl = {
207
+ name: "enter/lean-in-scatter-curl",
208
+ split: "character",
209
+ stagger: 20,
210
+ staggerOrder: "center",
211
+ perspective: 700,
212
+ animations: [
213
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "power4.out" },
214
+ { prop: "translateZ", from: -200, to: 0, duration: 650, ease: "cubic.out", jitterDelay: 110 },
215
+ { prop: "rotate", from: { min: -2542.059, max: 2542.059 }, to: 0, duration: 500, ease: "sine.out", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
216
+ ],
217
+ };
218
+ export const settleScatter = {
219
+ name: "enter/settle-scatter",
220
+ split: "character",
221
+ stagger: 35,
222
+ animations: [
223
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "circ.out" },
224
+ { prop: "blur", from: 10, to: 0, duration: 550, ease: "bounce.out" },
225
+ { prop: "translateY", from: 150, to: 0, duration: 750, ease: "elastic.out", jitterDelay: 100 },
226
+ { prop: "scale", from: { min: 0.15, max: 1.875 }, to: 1, duration: 550, ease: "cubic.out", jitterDelay: 240, transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
227
+ ],
228
+ };
229
+ export const expandScatter = {
230
+ name: "enter/expand-scatter",
231
+ split: "character",
232
+ stagger: 20,
233
+ staggerOrder: "end",
234
+ animations: [
235
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "expo.out" },
236
+ { prop: "translateX", from: -150, to: 0, duration: 650, ease: "power4.out" },
237
+ { prop: "scale", from: { min: 0.11, max: 1.375 }, to: 1, duration: 850, ease: "bounce.out", jitterDelay: 260 },
238
+ { prop: "blur", from: { min: 2.4, max: 30 }, to: 0, duration: 400, ease: "sine.out" },
239
+ ],
240
+ };
241
+ export const slantScatter = {
242
+ name: "enter/slant-scatter",
243
+ split: "character",
244
+ stagger: 20,
245
+ staggerOrder: "end",
246
+ animations: [
247
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "power4.out" },
248
+ { prop: "blur", from: { min: 3.8, max: 47.5 }, to: 0, duration: 550, ease: "bounce.out", jitterDelay: 220 },
249
+ { prop: "rotate", from: { min: -1665.671, max: 1665.671 }, to: 0, duration: 550, ease: "sine.out", jitterDelay: 120, transformOrigin: { x: 0, y: 0.5 } },
250
+ { prop: "skewX", from: { min: -101.125, max: 101.125 }, to: 0, duration: 700, ease: "bounce.out", jitterDelay: 200, transformOrigin: { x: 1, y: 0.5 } },
251
+ ],
252
+ };
253
+ export const extendXCurl = {
254
+ name: "enter/extend-x-curl",
255
+ split: "character",
256
+ stagger: 55,
257
+ animations: [
258
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "cubic.out" },
259
+ { prop: "scaleX", from: -1, to: 1, duration: 750, ease: "back.out" },
260
+ { prop: "translateY", from: 190, to: 0, duration: 750, ease: "bounce.out" },
261
+ { prop: "scaleY", from: 3, to: 1, duration: 600, ease: "back.out", jitterDelay: 280 },
262
+ { prop: "skewX", from: 35, to: 0, duration: 550, ease: "elastic.out", jitterDelay: 50, transformOrigin: { x: 0.5, y: 0, z: -100 } },
263
+ ],
264
+ };
265
+ export const extendYCurl = {
266
+ name: "enter/extend-y-curl",
267
+ split: "character",
268
+ stagger: 60,
269
+ perspective: 550,
270
+ animations: [
271
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "expo.out" },
272
+ { prop: "scale", from: 0.75, to: 1, duration: 750, ease: "expo.out", jitterDelay: 220, transformOrigin: { x: 1, y: 0.5, z: 100 } },
273
+ { prop: "translateZ", from: -350, to: 0, duration: 600, ease: "expo.out", jitterDelay: 150 },
274
+ { prop: "scaleY", from: 3, to: 1, duration: 550, ease: "back.out", transformOrigin: { x: 0.5, y: 1, z: 100 } },
275
+ ],
276
+ };
277
+ export const tumbleXScatterWord = {
278
+ name: "enter/tumble-x-scatter-word",
279
+ split: "word",
280
+ stagger: 20,
281
+ staggerOrder: "end",
282
+ perspective: 550,
283
+ transformOrigin: { x: 0.5, y: 1 },
284
+ animations: [
285
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "bounce.out" },
286
+ { prop: "translateY", from: { min: -445.54, max: 445.54 }, to: 0, duration: 800, ease: "power4.out" },
287
+ { prop: "translateX", from: -170, to: 0, duration: 600, ease: "elastic.out", jitterDelay: 90 },
288
+ { prop: "rotateX", from: -90, to: 0, duration: 750, ease: "circ.out", jitterDelay: 150 },
289
+ ],
290
+ };
291
+ export const flipUpScatterCurl = {
292
+ name: "enter/flip-up-scatter-curl",
293
+ split: "character",
294
+ stagger: 40,
295
+ perspective: 500,
296
+ transformOrigin: { x: 0.5, y: 1 },
297
+ animations: [
298
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "sine.out" },
299
+ { prop: "scaleY", from: 3, to: 1, duration: 550, ease: "quart.out", transformOrigin: { x: 0, y: 0 } },
300
+ { prop: "scale", from: { min: 0.14, max: 1.75 }, to: 1, duration: 800, ease: "quart.out", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
301
+ { prop: "translateX", from: 170, to: 0, duration: 750, ease: "power4.out" },
302
+ { prop: "rotateX", from: 390, to: 0, duration: 750, ease: "quart.out", transformOrigin: { x: 1, y: 1, z: 100 } },
303
+ { prop: "skewX", from: 30, to: 0, duration: 650, ease: "bounce.out", transformOrigin: { x: 0.5, y: 1 } },
304
+ ],
305
+ };
306
+ export const expandScatterLoose = {
307
+ name: "enter/expand-scatter-loose",
308
+ split: "character",
309
+ stagger: 30,
310
+ staggerOrder: "end",
311
+ perspective: 300,
312
+ animations: [
313
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "back.out" },
314
+ { prop: "translateX", from: { min: -436.997, max: 436.997 }, to: 0, duration: 900, ease: "bounce.out" },
315
+ { prop: "scale", from: { min: 0.09, max: 1.125 }, to: 1, duration: 850, ease: "circ.out" },
316
+ { prop: "translateZ", from: -400, to: 0, duration: 750, ease: "elastic.out", jitterDelay: 220 },
317
+ { prop: "translateY", from: -150, to: 0, duration: 700, ease: "power4.out" },
318
+ ],
319
+ };
320
+ export const tiltInScatter = {
321
+ name: "enter/tilt-in-scatter",
322
+ split: "character",
323
+ stagger: 20,
324
+ animations: [
325
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "power4.out" },
326
+ { prop: "rotate", from: { min: -1692.348, max: 1692.348 }, to: 0, duration: 800, ease: "quart.out", jitterDelay: 80, transformOrigin: { x: 0, y: 1 } },
327
+ { prop: "blur", from: { min: 1.8, max: 22.5 }, to: 0, duration: 700, ease: "power4.out" },
328
+ { prop: "scale", from: { min: 0.11, max: 1.375 }, to: 1, duration: 750, ease: "expo.out", jitterDelay: 220, transformOrigin: { x: 1, y: 0.5, z: 100 } },
329
+ ],
330
+ };
331
+ export const unfurlXScatter = {
332
+ name: "enter/unfurl-x-scatter",
333
+ split: "character",
334
+ stagger: 25,
335
+ animations: [
336
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "bounce.out" },
337
+ { prop: "scale", from: 0.35, to: 1, duration: 800, ease: "elastic.out" },
338
+ { prop: "translateX", from: 200, to: 0, duration: 800, ease: "expo.out" },
339
+ { prop: "scaleX", from: { min: 0.6, max: 7.5 }, to: 1, duration: 650, ease: "expo.out", transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
340
+ ],
341
+ };
342
+ export const bloomScatter = {
343
+ name: "enter/bloom-scatter",
344
+ split: "character",
345
+ stagger: 25,
346
+ perspective: 550,
347
+ animations: [
348
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "back.out" },
349
+ { prop: "translateZ", from: -450, to: 0, duration: 550, ease: "sine.out", perspective: 250 },
350
+ { prop: "scale", from: 0.6, to: 1, duration: 800, ease: "expo.out", jitterDelay: 130 },
351
+ { prop: "blur", from: 11, to: 0, duration: 700, ease: "power4.out" },
352
+ { prop: "translateX", from: { min: -386.162, max: 386.162 }, to: 0, duration: 850, ease: "cubic.out" },
353
+ ],
354
+ };
355
+ export const flipUpScatterBounce = {
356
+ name: "enter/flip-up-scatter-bounce",
357
+ split: "character",
358
+ stagger: 55,
359
+ staggerOrder: "edges",
360
+ perspective: 500,
361
+ transformOrigin: { x: 0.5, y: 1 },
362
+ animations: [
363
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "circ.out" },
364
+ { prop: "rotateY", from: { min: -558.321, max: 558.321 }, to: 0, duration: 550, ease: "quart.out", jitterDelay: 190 },
365
+ { prop: "rotateX", from: 420, to: 0, duration: 800, ease: "bounce.out", transformOrigin: { x: 0, y: 0.5, z: -100 }, perspective: 550 },
366
+ ],
367
+ };
368
+ export const foldInScatterBounce = {
369
+ name: "enter/fold-in-scatter-bounce",
370
+ split: "character",
371
+ stagger: 30,
372
+ perspective: 200,
373
+ transformOrigin: { x: 0.5, y: 1 },
374
+ animations: [
375
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "cubic.out" },
376
+ { prop: "scaleY", from: { min: 0.8, max: 10 }, to: 1, duration: 500, ease: "elastic.out", jitterDelay: 110 },
377
+ { prop: "translateY", from: { min: -467.605, max: 467.605 }, to: 0, duration: 550, ease: "quart.out" },
378
+ { prop: "scale", from: { min: 0.14, max: 1.75 }, to: 1, duration: 900, ease: "sine.out" },
379
+ { prop: "skewX", from: { min: -116.824, max: 116.824 }, to: 0, duration: 600, ease: "expo.out", jitterDelay: 340, transformOrigin: { x: 0, y: 1 } },
380
+ { prop: "rotateY", from: { min: -1011.538, max: 1011.538 }, to: 0, duration: 850, ease: "circ.out", perspective: 450 },
381
+ { prop: "rotateX", from: { min: -380.842, max: 380.842 }, to: 0, duration: 500, ease: "bounce.out", transformOrigin: { x: 1, y: 0.5 } },
382
+ ],
383
+ };
384
+ export const swivelScatterLoose = {
385
+ name: "enter/swivel-scatter-loose",
386
+ split: "character",
387
+ stagger: 30,
388
+ staggerOrder: "end",
389
+ perspective: 400,
390
+ transformOrigin: { x: 0.5, y: 0.5 },
391
+ animations: [
392
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "sine.out" },
393
+ { prop: "rotate", from: 510, to: 0, duration: 600, ease: "quart.out", jitterDelay: 50, transformOrigin: { x: 1, y: 0 } },
394
+ { prop: "rotateY", from: -450, to: 0, duration: 800, ease: "cubic.out", jitterDelay: 260 },
395
+ { prop: "skewX", from: { min: -112.441, max: 112.441 }, to: 0, duration: 600, ease: "elastic.out" },
396
+ ],
397
+ };
398
+ export const swirlScatter = {
399
+ name: "enter/swirl-scatter",
400
+ split: "character",
401
+ stagger: 35,
402
+ staggerOrder: "end",
403
+ animations: [
404
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "quart.out" },
405
+ { prop: "scale", from: { min: 0.14, max: 1.75 }, to: 1, duration: 700, ease: "back.out", jitterDelay: 270 },
406
+ { prop: "rotate", from: 480, to: 0, duration: 700, ease: "quart.out" },
407
+ { prop: "scaleY", from: { min: 0.6, max: 7.5 }, to: 1, duration: 600, ease: "back.out" },
408
+ ],
409
+ };
410
+ export const twirlScatter = {
411
+ name: "enter/twirl-scatter",
412
+ split: "character",
413
+ stagger: 45,
414
+ staggerOrder: "end",
415
+ animations: [
416
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "power4.out" },
417
+ { prop: "scaleX", from: { min: 0, max: -2.5 }, to: 1, duration: 750, ease: "cubic.out" },
418
+ { prop: "rotate", from: -660, to: 0, duration: 700, ease: "back.out", transformOrigin: { x: 1, y: 0.5, z: 100 } },
419
+ { prop: "scale", from: 0.6, to: 1, duration: 900, ease: "elastic.out", jitterDelay: 90 },
420
+ ],
421
+ };
422
+ export const extendXSnapWord = {
423
+ name: "enter/extend-x-snap-word",
424
+ split: "word",
425
+ stagger: 50,
426
+ staggerOrder: "edges",
427
+ perspective: 350,
428
+ animations: [
429
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "bounce.out" },
430
+ { prop: "scaleX", from: -1, to: 1, duration: 800, ease: "expo.out", jitterDelay: 340, transformOrigin: { x: 0.5, y: 0 } },
431
+ { prop: "translateY", from: 130, to: 0, duration: 550, ease: "back.out", jitterDelay: 110 },
432
+ { prop: "translateZ", from: -350, to: 0, duration: 850, ease: "sine.out" },
433
+ ],
434
+ };
435
+ export const riseYScatter = {
436
+ name: "enter/rise-y-scatter",
437
+ split: "word",
438
+ stagger: 40,
439
+ animations: [
440
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "circ.out" },
441
+ { prop: "blur", from: 12, to: 0, duration: 800, ease: "cubic.out", jitterDelay: 90 },
442
+ { prop: "skewX", from: { min: -145.334, max: 145.334 }, to: 0, duration: 500, ease: "cubic.out", jitterDelay: 250 },
443
+ { prop: "scaleY", from: 3, to: 1, duration: 850, ease: "back.out" },
444
+ ],
445
+ };
446
+ export const leanScatter = {
447
+ name: "enter/lean-scatter",
448
+ split: "character",
449
+ stagger: 45,
450
+ staggerOrder: "edges",
451
+ animations: [
452
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "circ.out" },
453
+ { prop: "skewX", from: { min: -92.865, max: 92.865 }, to: 0, duration: 600, ease: "quart.out" },
454
+ { prop: "blur", from: 17, to: 0, duration: 750, ease: "bounce.out" },
455
+ ],
456
+ };
457
+ export const riseYScatterCurl = {
458
+ name: "enter/rise-y-scatter-curl",
459
+ split: "character",
460
+ stagger: 25,
461
+ animations: [
462
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "sine.out" },
463
+ { prop: "scale", from: 0.65, to: 1, duration: 750, ease: "power4.out", jitterDelay: 190 },
464
+ { prop: "scaleY", from: { min: 0.04, max: 0.5 }, to: 1, duration: 700, ease: "elastic.out", jitterDelay: 220, transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
465
+ { prop: "skewX", from: { min: -193.342, max: 193.342 }, to: 0, duration: 600, ease: "sine.out", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
466
+ { prop: "translateX", from: -210, to: 0, duration: 750, ease: "expo.out", jitterDelay: 120 },
467
+ { prop: "blur", from: { min: 3.2, max: 40 }, to: 0, duration: 750, ease: "circ.out", jitterDelay: 200 },
468
+ ],
469
+ };
470
+ export const whirlScatter = {
471
+ name: "enter/whirl-scatter",
472
+ split: "character",
473
+ stagger: 45,
474
+ perspective: 550,
475
+ animations: [
476
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "expo.out" },
477
+ { prop: "translateX", from: { min: -731.445, max: 731.445 }, to: 0, duration: 800, ease: "sine.out", jitterDelay: 170 },
478
+ { prop: "blur", from: 17, to: 0, duration: 550, ease: "sine.out" },
479
+ { prop: "translateZ", from: -200, to: 0, duration: 750, ease: "circ.out", jitterDelay: 280 },
480
+ { prop: "scaleX", from: 4, to: 1, duration: 850, ease: "back.out", jitterDelay: 340, transformOrigin: { x: 1, y: 1 } },
481
+ { prop: "rotate", from: -390, to: 0, duration: 650, ease: "sine.out", transformOrigin: { x: 0, y: 0.5 } },
482
+ ],
483
+ };
484
+ export const pinwheelScatter = {
485
+ name: "enter/pinwheel-scatter",
486
+ split: "character",
487
+ stagger: 20,
488
+ animations: [
489
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "expo.out" },
490
+ { prop: "blur", from: { min: 3.2, max: 40 }, to: 0, duration: 700, ease: "bounce.out", jitterDelay: 300 },
491
+ { prop: "scaleY", from: { min: 0.3, max: 3.75 }, to: 1, duration: 750, ease: "quart.out" },
492
+ { prop: "skewX", from: { min: -169.217, max: 169.217 }, to: 0, duration: 600, ease: "back.out", transformOrigin: { x: 0, y: 0.5 } },
493
+ { prop: "translateX", from: -100, to: 0, duration: 850, ease: "power4.out" },
494
+ { prop: "rotate", from: 660, to: 0, duration: 900, ease: "elastic.out", transformOrigin: { x: 0, y: 0.5 } },
495
+ ],
496
+ };
497
+ export const swivelScatterDeep = {
498
+ name: "enter/swivel-scatter-deep",
499
+ split: "character",
500
+ stagger: 55,
501
+ perspective: 450,
502
+ transformOrigin: { x: 0.5, y: 0.5 },
503
+ animations: [
504
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "circ.out" },
505
+ { prop: "translateZ", from: -600, to: 0, duration: 700, ease: "expo.out" },
506
+ { prop: "scale", from: 0.65, to: 1, duration: 800, ease: "back.out", jitterDelay: 220, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
507
+ { prop: "rotateY", from: 420, to: 0, duration: 850, ease: "quart.out", jitterDelay: 320, transformOrigin: { x: 0.5, y: 0.5 }, perspective: 500 },
508
+ { prop: "scaleY", from: 2, to: 1, duration: 600, ease: "sine.out", transformOrigin: { x: 0.5, y: 0, z: -100 } },
509
+ { prop: "rotate", from: { min: -1729.634, max: 1729.634 }, to: 0, duration: 750, ease: "power4.out", jitterDelay: 150 },
510
+ ],
511
+ };
512
+ export const foldInCurl = {
513
+ name: "enter/fold-in-curl",
514
+ split: "character",
515
+ stagger: 60,
516
+ staggerOrder: "end",
517
+ perspective: 500,
518
+ transformOrigin: { x: 0.5, y: 1 },
519
+ animations: [
520
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "cubic.out" },
521
+ { prop: "rotateX", from: -360, to: 0, duration: 850, ease: "expo.out", jitterDelay: 60, transformOrigin: { x: 0, y: 0.5, z: -100 }, perspective: 500 },
522
+ { prop: "skewX", from: -40, to: 0, duration: 500, ease: "quart.out", jitterDelay: 80, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
523
+ { prop: "blur", from: 16, to: 0, duration: 600, ease: "back.out", jitterDelay: 240 },
524
+ { prop: "scaleY", from: 4, to: 1, duration: 650, ease: "cubic.out", jitterDelay: 220, transformOrigin: { x: 0, y: 0.5 } },
525
+ { prop: "scale", from: 0.3, to: 1, duration: 850, ease: "sine.out", jitterDelay: 130, transformOrigin: { x: 0.5, y: 0, z: -100 } },
526
+ { prop: "rotate", from: 270, to: 0, duration: 650, ease: "quart.out" },
527
+ ],
528
+ };
529
+ export const turnScatterCurl = {
530
+ name: "enter/turn-scatter-curl",
531
+ split: "character",
532
+ stagger: 55,
533
+ staggerOrder: "end",
534
+ perspective: 400,
535
+ transformOrigin: { x: 0.5, y: 0.5 },
536
+ animations: [
537
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "elastic.out" },
538
+ { prop: "skewX", from: { min: -136.596, max: 136.596 }, to: 0, duration: 550, ease: "circ.out", transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
539
+ { prop: "rotateY", from: -270, to: 0, duration: 500, ease: "circ.out" },
540
+ { prop: "translateY", from: { min: -617.184, max: 617.184 }, to: 0, duration: 500, ease: "quart.out" },
541
+ { prop: "rotate", from: -120, to: 0, duration: 800, ease: "power4.out" },
542
+ { prop: "blur", from: { min: 1.2, max: 15 }, to: 0, duration: 450, ease: "quart.out", jitterDelay: 80 },
543
+ ],
544
+ };
545
+ export const foldInScatterCurl = {
546
+ name: "enter/fold-in-scatter-curl",
547
+ split: "character",
548
+ stagger: 20,
549
+ perspective: 550,
550
+ transformOrigin: { x: 0.5, y: 1 },
551
+ animations: [
552
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "circ.out" },
553
+ { prop: "translateZ", from: -300, to: 0, duration: 850, ease: "bounce.out", jitterDelay: 130 },
554
+ { prop: "scaleY", from: -1, to: 1, duration: 750, ease: "bounce.out" },
555
+ { prop: "rotateX", from: 150, to: 0, duration: 900, ease: "elastic.out", jitterDelay: 190, transformOrigin: { x: 0, y: 0.5, z: -100 }, perspective: 400 },
556
+ { prop: "translateY", from: { min: -871.977, max: 871.977 }, to: 0, duration: 600, ease: "elastic.out", jitterDelay: 240 },
557
+ { prop: "translateX", from: { min: -502.407, max: 502.407 }, to: 0, duration: 800, ease: "power4.out", jitterDelay: 210 },
558
+ ],
559
+ };
560
+ export const flipUpScatterWord = {
561
+ name: "enter/flip-up-scatter-word",
562
+ split: "word",
563
+ stagger: 45,
564
+ perspective: 500,
565
+ transformOrigin: { x: 0.5, y: 0.5 },
566
+ animations: [
567
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "back.out" },
568
+ { prop: "rotateX", from: 120, to: 0, duration: 500, ease: "bounce.out", perspective: 350 },
569
+ { prop: "rotateY", from: -120, to: 0, duration: 600, ease: "cubic.out", jitterDelay: 250 },
570
+ { prop: "skewX", from: { min: -173.156, max: 173.156 }, to: 0, duration: 450, ease: "elastic.out", jitterDelay: 310 },
571
+ { prop: "blur", from: { min: 3.4, max: 42.5 }, to: 0, duration: 500, ease: "sine.out", jitterDelay: 50 },
572
+ ],
573
+ };
574
+ export const tiltInScatterWord = {
575
+ name: "enter/tilt-in-scatter-word",
576
+ split: "word",
577
+ stagger: 40,
578
+ animations: [
579
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "back.out" },
580
+ { prop: "rotate", from: { min: -2676.345, max: 2676.345 }, to: 0, duration: 700, ease: "elastic.out" },
581
+ { prop: "translateX", from: -180, to: 0, duration: 600, ease: "sine.out" },
582
+ ],
583
+ };
584
+ export const unfurlYCurl = {
585
+ name: "enter/unfurl-y-curl",
586
+ split: "character",
587
+ stagger: 40,
588
+ staggerOrder: "end",
589
+ animations: [
590
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "back.out" },
591
+ { prop: "scaleY", from: 0.2, to: 1, duration: 700, ease: "quart.out", jitterDelay: 320, transformOrigin: { x: 1, y: 0.5 } },
592
+ { prop: "scale", from: 0.75, to: 1, duration: 800, ease: "expo.out", jitterDelay: 170, transformOrigin: { x: 0.5, y: 1, z: 100 } },
593
+ { prop: "blur", from: 19, to: 0, duration: 600, ease: "sine.out", jitterDelay: 160 },
594
+ ],
595
+ };
596
+ export const extendYScatterWord = {
597
+ name: "enter/extend-y-scatter-word",
598
+ split: "word",
599
+ stagger: 40,
600
+ animations: [
601
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "cubic.out" },
602
+ { prop: "skewX", from: -15, to: 0, duration: 600, ease: "cubic.out" },
603
+ { prop: "translateY", from: -50, to: 0, duration: 600, ease: "bounce.out" },
604
+ { prop: "scaleY", from: { min: 0.24, max: 3 }, to: 1, duration: 700, ease: "sine.out" },
605
+ ],
606
+ };
607
+ export const topple = {
608
+ name: "enter/topple",
609
+ split: "character",
610
+ stagger: 50,
611
+ perspective: 1250,
612
+ transformOrigin: { x: 0.5, y: 1 },
613
+ animations: [
614
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "quart.out" },
615
+ { prop: "rotateX", from: 60, to: 0, duration: 700, ease: "cubic.out", transformOrigin: { x: 0, y: 0 } },
616
+ ],
617
+ };
618
+ export const blurRiseSnap = {
619
+ name: "enter/blur-rise-snap",
620
+ split: "character",
621
+ stagger: 25,
622
+ staggerOrder: "center",
623
+ animations: [
624
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "bounce.out" },
625
+ { prop: "blur", from: 7, to: 0, duration: 750, ease: "expo.out" },
626
+ ],
627
+ };
628
+ export const loom = {
629
+ name: "enter/loom",
630
+ split: "character",
631
+ stagger: 50,
632
+ perspective: 1100,
633
+ animations: [
634
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "back.out" },
635
+ { prop: "translateY", from: -40, to: 0, duration: 750, ease: "quart.out" },
636
+ { prop: "translateZ", from: -150, to: 0, duration: 750, ease: "quart.out" },
637
+ ],
638
+ };
639
+ export const glideOutward = {
640
+ name: "enter/glide-outward",
641
+ split: "character",
642
+ stagger: 55,
643
+ staggerOrder: "center",
644
+ animations: [
645
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "sine.out" },
646
+ { prop: "translateX", from: -30, to: 0, duration: 750, ease: "sine.out" },
647
+ { prop: "skewX", from: -15, to: 0, duration: 400, ease: "bounce.out" },
648
+ ],
649
+ };
650
+ export const tiltInBounce = {
651
+ name: "enter/tilt-in-bounce",
652
+ split: "character",
653
+ stagger: 60,
654
+ animations: [
655
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "sine.out" },
656
+ { prop: "scaleY", from: 0.7, to: 1, duration: 600, ease: "bounce.out", transformOrigin: { x: 0.5, y: 0 } },
657
+ { prop: "rotate", from: -60, to: 0, duration: 500, ease: "bounce.out" },
658
+ ],
659
+ };
660
+ export const expandScatterTrail = {
661
+ name: "enter/expand-scatter-trail",
662
+ split: "character",
663
+ stagger: 40,
664
+ staggerOrder: "end",
665
+ animations: [
666
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "quart.out" },
667
+ { prop: "translateY", from: { min: -66.362, max: 66.362 }, to: 0, duration: 550, ease: "bounce.out", jitterDelay: 70 },
668
+ { prop: "scale", from: 0.65, to: 1, duration: 600, ease: "cubic.out" },
669
+ ],
670
+ };
671
+ export const rotateYInDeep = {
672
+ name: "enter/rotate-y-in-deep",
673
+ split: "character",
674
+ stagger: 30,
675
+ staggerOrder: "random",
676
+ perspective: 900,
677
+ transformOrigin: { x: 0.5, y: 0.5 },
678
+ animations: [
679
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "bounce.out" },
680
+ { prop: "rotate", from: 30, to: 0, duration: 500, ease: "quart.out" },
681
+ { prop: "rotateY", from: -60, to: 0, duration: 600, ease: "circ.out", perspective: 1500 },
682
+ ],
683
+ };
684
+ export const swipeSpring = {
685
+ name: "enter/swipe-spring",
686
+ split: "character",
687
+ stagger: 55,
688
+ staggerOrder: "center",
689
+ animations: [
690
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "bounce.out" },
691
+ { prop: "translateX", from: 60, to: 0, duration: 800, ease: "elastic.out" },
692
+ ],
693
+ };
694
+ export const swipeScatter = {
695
+ name: "enter/swipe-scatter",
696
+ split: "character",
697
+ stagger: 20,
698
+ animations: [
699
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "back.out" },
700
+ { prop: "translateX", from: { min: -131.56, max: 131.56 }, to: 0, duration: 600, ease: "sine.out" },
701
+ { prop: "blur", from: { min: 1.6, max: 20 }, to: 0, duration: 600, ease: "cubic.out" },
702
+ ],
703
+ };
704
+ export const tiltInInward = {
705
+ name: "enter/tilt-in-inward",
706
+ split: "word",
707
+ stagger: 55,
708
+ staggerOrder: "edges",
709
+ animations: [
710
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "elastic.out" },
711
+ { prop: "blur", from: 8, to: 0, duration: 700, ease: "back.out" },
712
+ { prop: "rotate", from: -30, to: 0, duration: 500, ease: "quart.out" },
713
+ ],
714
+ };
715
+ export const growSpring = {
716
+ name: "enter/grow-spring",
717
+ split: "character",
718
+ stagger: 25,
719
+ staggerOrder: "center",
720
+ animations: [
721
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "circ.out" },
722
+ { prop: "scale", from: 0.25, to: 1, duration: 800, ease: "elastic.out" },
723
+ ],
724
+ };
725
+ export const extendYScatterCurl = {
726
+ name: "enter/extend-y-scatter-curl",
727
+ split: "character",
728
+ stagger: 45,
729
+ animations: [
730
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "power4.out" },
731
+ { prop: "blur", from: { min: 3.2, max: 40 }, to: 0, duration: 750, ease: "elastic.out", jitterDelay: 410 },
732
+ { prop: "translateY", from: { min: -1510.445, max: 1510.445 }, to: 0, duration: 600, ease: "cubic.out", jitterDelay: 440 },
733
+ { prop: "scaleY", from: { min: 0.04, max: 0.5 }, to: 1, duration: 850, ease: "sine.out", jitterDelay: 220, transformOrigin: { x: 0.5, y: 1, z: 100 } },
734
+ { prop: "scale", from: { min: 0.08, max: 1 }, to: 1, duration: 800, ease: "quart.out", jitterDelay: 250, transformOrigin: { x: 0, y: 0, z: -100 } },
735
+ ],
736
+ };
737
+ export const rotateYInScatterCurl = {
738
+ name: "enter/rotate-y-in-scatter-curl",
739
+ split: "character",
740
+ stagger: 60,
741
+ staggerOrder: "edges",
742
+ perspective: 150,
743
+ transformOrigin: { x: 0.5, y: 0.5 },
744
+ animations: [
745
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "cubic.out" },
746
+ { prop: "translateZ", from: -800, to: 0, duration: 800, ease: "sine.out", jitterDelay: 320, perspective: 150 },
747
+ { prop: "rotateY", from: { min: -1389.565, max: 1389.565 }, to: 0, duration: 800, ease: "expo.out", jitterDelay: 320, transformOrigin: { x: 1, y: 0.5 }, perspective: 350 },
748
+ { prop: "scale", from: { min: 0.13, max: 1.625 }, to: 1, duration: 650, ease: "bounce.out", jitterDelay: 420, transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
749
+ { prop: "scaleY", from: { min: 0.3, max: 3.75 }, to: 1, duration: 600, ease: "elastic.out", jitterDelay: 260, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
750
+ { prop: "translateX", from: { min: -2706.139, max: 2706.139 }, to: 0, duration: 650, ease: "circ.out", jitterDelay: 200 },
751
+ { prop: "rotate", from: { min: -1741.121, max: 1741.121 }, to: 0, duration: 550, ease: "back.out", transformOrigin: { x: 0.5, y: 1, z: 100 } },
752
+ ],
753
+ };
754
+ export const foldInScatterSnap = {
755
+ name: "enter/fold-in-scatter-snap",
756
+ split: "character",
757
+ stagger: 55,
758
+ perspective: 350,
759
+ transformOrigin: { x: 0.5, y: 1 },
760
+ animations: [
761
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "circ.out" },
762
+ { prop: "rotateX", from: { min: -3799.954, max: 3799.954 }, to: 0, duration: 600, ease: "expo.out", jitterDelay: 260, transformOrigin: { x: 0, y: 0.5, z: -100 }, perspective: 350 },
763
+ { prop: "scale", from: { min: 0.1, max: 1.25 }, to: 1, duration: 550, ease: "circ.out", jitterDelay: 170, transformOrigin: { x: 0, y: 0.5, z: -100 } },
764
+ { prop: "translateX", from: 200, to: 0, duration: 700, ease: "sine.out" },
765
+ { prop: "scaleY", from: { min: 0.6, max: 7.5 }, to: 1, duration: 550, ease: "expo.out", jitterDelay: 380, transformOrigin: { x: 0.5, y: 0, z: -100 } },
766
+ { prop: "rotate", from: { min: -7028.788, max: 7028.788 }, to: 0, duration: 750, ease: "expo.out", jitterDelay: 190, transformOrigin: { x: 0, y: 0.5 } },
767
+ ],
768
+ };
769
+ export const slantScatterSpring = {
770
+ name: "enter/slant-scatter-spring",
771
+ split: "character",
772
+ stagger: 15,
773
+ animations: [
774
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "cubic.out" },
775
+ { prop: "translateY", from: { min: -2008.854, max: 2008.854 }, to: 0, duration: 750, ease: "quart.out", jitterDelay: 230 },
776
+ { prop: "rotate", from: { min: -4435.622, max: 4435.622 }, to: 0, duration: 600, ease: "elastic.out", jitterDelay: 110, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
777
+ { prop: "translateX", from: { min: -1781.755, max: 1781.755 }, to: 0, duration: 600, ease: "elastic.out", jitterDelay: 200 },
778
+ { prop: "blur", from: { min: 3.6, max: 45 }, to: 0, duration: 500, ease: "power4.out", jitterDelay: 410 },
779
+ ],
780
+ };
781
+ export const riseYScatterLoose = {
782
+ name: "enter/rise-y-scatter-loose",
783
+ split: "character",
784
+ stagger: 15,
785
+ staggerOrder: "edges",
786
+ animations: [
787
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "back.out" },
788
+ { prop: "scaleY", from: { min: 0.5, max: 6.25 }, to: 1, duration: 600, ease: "cubic.out", jitterDelay: 450 },
789
+ { prop: "blur", from: { min: 5.2, max: 65 }, to: 0, duration: 600, ease: "sine.out", jitterDelay: 260 },
790
+ { prop: "skewX", from: { min: -382.518, max: 382.518 }, to: 0, duration: 600, ease: "power4.out", jitterDelay: 480, transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
791
+ { prop: "scale", from: { min: 0.12, max: 1.5 }, to: 1, duration: 900, ease: "sine.out", jitterDelay: 390 },
792
+ ],
793
+ };
794
+ export const tiltInScatterCurl = {
795
+ name: "enter/tilt-in-scatter-curl",
796
+ split: "character",
797
+ stagger: 60,
798
+ animations: [
799
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "bounce.out" },
800
+ { prop: "blur", from: { min: 4, max: 50 }, to: 0, duration: 450, ease: "cubic.out", jitterDelay: 470 },
801
+ { prop: "translateX", from: { min: -1326.384, max: 1326.384 }, to: 0, duration: 800, ease: "back.out", jitterDelay: 100 },
802
+ { prop: "scaleY", from: { min: 0.06, max: 0.75 }, to: 1, duration: 750, ease: "power4.out", jitterDelay: 250, transformOrigin: { x: 0, y: 0, z: -100 } },
803
+ { prop: "scale", from: 0.75, to: 1, duration: 650, ease: "expo.out", transformOrigin: { x: 1, y: 0.5, z: 100 } },
804
+ { prop: "scaleX", from: { min: 0.8, max: 10 }, to: 1, duration: 550, ease: "back.out", jitterDelay: 390, transformOrigin: { x: 0, y: 0.5, z: -100 } },
805
+ { prop: "rotate", from: { min: -6641.335, max: 6641.335 }, to: 0, duration: 550, ease: "bounce.out", jitterDelay: 170, transformOrigin: { x: 0, y: 0, z: -100 } },
806
+ ],
807
+ };
808
+ export const spreadXScatterCurl = {
809
+ name: "enter/spread-x-scatter-curl",
810
+ split: "character",
811
+ stagger: 50,
812
+ animations: [
813
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "power4.out" },
814
+ { prop: "scaleY", from: { min: 0, max: -2.5 }, to: 1, duration: 550, ease: "cubic.out", jitterDelay: 200, transformOrigin: { x: 1, y: 1, z: 100 } },
815
+ { prop: "scaleX", from: { min: 0.06, max: 0.75 }, to: 1, duration: 550, ease: "expo.out", jitterDelay: 400, transformOrigin: { x: 0.5, y: 0, z: -100 } },
816
+ { prop: "skewX", from: { min: -209.791, max: 209.791 }, to: 0, duration: 700, ease: "expo.out", jitterDelay: 140, transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
817
+ { prop: "blur", from: 27, to: 0, duration: 500, ease: "elastic.out" },
818
+ ],
819
+ };
820
+ export const twirlScatterCurl = {
821
+ name: "enter/twirl-scatter-curl",
822
+ split: "character",
823
+ stagger: 20,
824
+ staggerOrder: "end",
825
+ animations: [
826
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "quart.out" },
827
+ { prop: "blur", from: { min: 3.2, max: 40 }, to: 0, duration: 650, ease: "sine.out", jitterDelay: 200 },
828
+ { prop: "skewX", from: { min: -389.111, max: 389.111 }, to: 0, duration: 400, ease: "power4.out", jitterDelay: 210, transformOrigin: { x: 0.5, y: 0, z: -100 } },
829
+ { prop: "scaleX", from: { min: 0, max: 0 }, to: 1, duration: 750, ease: "elastic.out", transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
830
+ { prop: "scaleY", from: { min: 0.6, max: 7.5 }, to: 1, duration: 800, ease: "expo.out", jitterDelay: 350, transformOrigin: { x: 0.5, y: 1, z: 100 } },
831
+ { prop: "rotate", from: 690, to: 0, duration: 600, ease: "elastic.out", jitterDelay: 220, transformOrigin: { x: 0, y: 0.5, z: -100 } },
832
+ ],
833
+ };
834
+ export const tipInScatter = {
835
+ name: "enter/tip-in-scatter",
836
+ split: "character",
837
+ stagger: 45,
838
+ animations: [
839
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "power4.out" },
840
+ { prop: "rotate", from: { min: -6184.943, max: 6184.943 }, to: 0, duration: 700, ease: "quart.out", jitterDelay: 110, transformOrigin: { x: 0.5, y: 0, z: -100 } },
841
+ { prop: "skewX", from: { min: -252.602, max: 252.602 }, to: 0, duration: 550, ease: "quart.out", jitterDelay: 380, transformOrigin: { x: 1, y: 0.5, z: 100 } },
842
+ { prop: "blur", from: { min: 2.8, max: 35 }, to: 0, duration: 600, ease: "back.out", jitterDelay: 350 },
843
+ ],
844
+ };
845
+ export const liftSpring = {
846
+ name: "enter/lift-spring",
847
+ split: "character",
848
+ stagger: 55,
849
+ animations: [
850
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "sine.out" },
851
+ { prop: "translateY", from: -60, to: 0, duration: 550, ease: "elastic.out" },
852
+ ],
853
+ };
854
+ export const stretchXBounce = {
855
+ name: "enter/stretch-x-bounce",
856
+ split: "character",
857
+ stagger: 25,
858
+ animations: [
859
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "elastic.out" },
860
+ { prop: "scaleX", from: 0.6, to: 1, duration: 700, ease: "bounce.out", jitterDelay: 20 },
861
+ { prop: "blur", from: 8, to: 0, duration: 650, ease: "power4.out" },
862
+ { prop: "translateX", from: -40, to: 0, duration: 800, ease: "elastic.out" },
863
+ ],
864
+ };
865
+ export const unfurlXKick = {
866
+ name: "enter/unfurl-x-kick",
867
+ split: "character",
868
+ stagger: 20,
869
+ animations: [
870
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "power4.out" },
871
+ { prop: "translateX", from: 60, to: 0, duration: 700, ease: "circ.out" },
872
+ { prop: "scaleX", from: 1.4, to: 1, duration: 500, ease: "back.out", jitterDelay: 30 },
873
+ ],
874
+ };
875
+ export const rotateYInInward = {
876
+ name: "enter/rotate-y-in-inward",
877
+ split: "character",
878
+ stagger: 30,
879
+ staggerOrder: "edges",
880
+ perspective: 950,
881
+ transformOrigin: { x: 0.5, y: 0.5 },
882
+ animations: [
883
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "quart.out" },
884
+ { prop: "blur", from: 7, to: 0, duration: 750, ease: "quart.out" },
885
+ { prop: "rotateY", from: -30, to: 0, duration: 650, ease: "power4.out" },
886
+ ],
887
+ };
888
+ export const hazeOutward = {
889
+ name: "enter/haze-outward",
890
+ split: "character",
891
+ stagger: 50,
892
+ staggerOrder: "center",
893
+ animations: [
894
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "circ.out" },
895
+ { prop: "blur", from: 4, to: 0, duration: 400, ease: "sine.out" },
896
+ ],
897
+ };
898
+ export const pivotScatter = {
899
+ name: "enter/pivot-scatter",
900
+ split: "character",
901
+ stagger: 55,
902
+ perspective: 700,
903
+ transformOrigin: { x: 0.5, y: 0.5 },
904
+ animations: [
905
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "elastic.out" },
906
+ { prop: "rotateY", from: { min: -1223.071, max: 1223.071 }, to: 0, duration: 850, ease: "expo.out", transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
907
+ { prop: "scale", from: { min: 0.12, max: 1.5 }, to: 1, duration: 650, ease: "bounce.out" },
908
+ { prop: "translateZ", from: -450, to: 0, duration: 750, ease: "sine.out", perspective: 350 },
909
+ { prop: "translateY", from: 130, to: 0, duration: 900, ease: "elastic.out" },
910
+ ],
911
+ };
912
+ export const turnSpring = {
913
+ name: "enter/turn-spring",
914
+ split: "word",
915
+ stagger: 25,
916
+ staggerOrder: "end",
917
+ perspective: 550,
918
+ transformOrigin: { x: 0.5, y: 0.5 },
919
+ animations: [
920
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "expo.out" },
921
+ { prop: "rotateY", from: -150, to: 0, duration: 600, ease: "elastic.out", perspective: 300 },
922
+ { prop: "translateY", from: -190, to: 0, duration: 650, ease: "bounce.out" },
923
+ ],
924
+ };
925
+ export const tumbleXLoose = {
926
+ name: "enter/tumble-x-loose",
927
+ split: "word",
928
+ stagger: 40,
929
+ perspective: 550,
930
+ transformOrigin: { x: 0.5, y: 1 },
931
+ animations: [
932
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "sine.out" },
933
+ { prop: "blur", from: 19, to: 0, duration: 600, ease: "back.out" },
934
+ { prop: "rotateX", from: 360, to: 0, duration: 750, ease: "power4.out", perspective: 600 },
935
+ { prop: "translateY", from: 120, to: 0, duration: 650, ease: "elastic.out", jitterDelay: 180 },
936
+ { prop: "translateZ", from: -300, to: 0, duration: 800, ease: "bounce.out", jitterDelay: 170 },
937
+ { prop: "scaleX", from: 0.1, to: 1, duration: 550, ease: "elastic.out" },
938
+ ],
939
+ };
940
+ export const leanInScatterSpring = {
941
+ name: "enter/lean-in-scatter-spring",
942
+ split: "character",
943
+ stagger: 40,
944
+ staggerOrder: "center",
945
+ perspective: 250,
946
+ animations: [
947
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "cubic.out" },
948
+ { prop: "scaleX", from: { min: 0, max: 0 }, to: 1, duration: 800, ease: "sine.out" },
949
+ { prop: "skewX", from: { min: -107.905, max: 107.905 }, to: 0, duration: 500, ease: "back.out", jitterDelay: 150 },
950
+ { prop: "translateZ", from: -350, to: 0, duration: 500, ease: "quart.out", perspective: 300 },
951
+ { prop: "rotate", from: { min: -2472.335, max: 2472.335 }, to: 0, duration: 900, ease: "elastic.out", jitterDelay: 120 },
952
+ { prop: "translateY", from: { min: -736.506, max: 736.506 }, to: 0, duration: 900, ease: "power4.out" },
953
+ ],
954
+ };
955
+ export const toppleScatterTrail = {
956
+ name: "enter/topple-scatter-trail",
957
+ split: "character",
958
+ stagger: 20,
959
+ staggerOrder: "end",
960
+ perspective: 250,
961
+ transformOrigin: { x: 0.5, y: 1 },
962
+ animations: [
963
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "circ.out" },
964
+ { prop: "scale", from: 0.55, to: 1, duration: 650, ease: "cubic.out" },
965
+ { prop: "rotate", from: { min: -824.412, max: 824.412 }, to: 0, duration: 850, ease: "back.out" },
966
+ { prop: "rotateX", from: 180, to: 0, duration: 650, ease: "quart.out", jitterDelay: 320 },
967
+ { prop: "translateX", from: -170, to: 0, duration: 550, ease: "expo.out", jitterDelay: 80 },
968
+ ],
969
+ };
970
+ export const whirlScatterCurl = {
971
+ name: "enter/whirl-scatter-curl",
972
+ split: "character",
973
+ stagger: 35,
974
+ animations: [
975
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "expo.out" },
976
+ { prop: "skewX", from: { min: -79.759, max: 79.759 }, to: 0, duration: 550, ease: "circ.out", transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
977
+ { prop: "rotate", from: -600, to: 0, duration: 800, ease: "circ.out" },
978
+ { prop: "scale", from: { min: 0.06, max: 0.75 }, to: 1, duration: 550, ease: "cubic.out", jitterDelay: 270 },
979
+ { prop: "translateY", from: { min: -644.369, max: 644.369 }, to: 0, duration: 800, ease: "back.out", jitterDelay: 170 },
980
+ ],
981
+ };
982
+ export const tipInScatterCurl = {
983
+ name: "enter/tip-in-scatter-curl",
984
+ split: "character",
985
+ stagger: 50,
986
+ animations: [
987
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "expo.out" },
988
+ { prop: "blur", from: 19, to: 0, duration: 750, ease: "elastic.out" },
989
+ { prop: "rotate", from: 240, to: 0, duration: 550, ease: "cubic.out", jitterDelay: 270, transformOrigin: { x: 0, y: 0.5 } },
990
+ { prop: "scaleY", from: 0.2, to: 1, duration: 550, ease: "expo.out", jitterDelay: 330, transformOrigin: { x: 1, y: 1, z: 100 } },
991
+ { prop: "scale", from: 0.5, to: 1, duration: 900, ease: "back.out", transformOrigin: { x: 0.5, y: 0, z: -100 } },
992
+ { prop: "skewX", from: { min: -101.269, max: 101.269 }, to: 0, duration: 600, ease: "back.out" },
993
+ ],
994
+ };
995
+ export const swirlLoose = {
996
+ name: "enter/swirl-loose",
997
+ split: "word",
998
+ stagger: 50,
999
+ animations: [
1000
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "circ.out" },
1001
+ { prop: "rotate", from: 270, to: 0, duration: 550, ease: "circ.out", jitterDelay: 80, transformOrigin: { x: 1, y: 0.5 } },
1002
+ { prop: "translateX", from: 220, to: 0, duration: 550, ease: "cubic.out" },
1003
+ ],
1004
+ };
1005
+ export const rotateYInScatterSpring = {
1006
+ name: "enter/rotate-y-in-scatter-spring",
1007
+ split: "character",
1008
+ stagger: 40,
1009
+ staggerOrder: "edges",
1010
+ perspective: 550,
1011
+ transformOrigin: { x: 0.5, y: 0.5 },
1012
+ animations: [
1013
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "power4.out" },
1014
+ { prop: "rotate", from: { min: -2158.772, max: 2158.772 }, to: 0, duration: 650, ease: "sine.out" },
1015
+ { prop: "rotateY", from: -510, to: 0, duration: 850, ease: "elastic.out", jitterDelay: 60, transformOrigin: { x: 0, y: 0.5 } },
1016
+ { prop: "blur", from: 15, to: 0, duration: 750, ease: "bounce.out" },
1017
+ { prop: "translateZ", from: -250, to: 0, duration: 650, ease: "expo.out", jitterDelay: 170 },
1018
+ { prop: "scaleX", from: { min: 0.3, max: 3.75 }, to: 1, duration: 800, ease: "back.out", jitterDelay: 350, transformOrigin: { x: 1, y: 1 } },
1019
+ ],
1020
+ };
1021
+ export const whirlScatterLoose = {
1022
+ name: "enter/whirl-scatter-loose",
1023
+ split: "character",
1024
+ stagger: 55,
1025
+ staggerOrder: "random",
1026
+ perspective: 500,
1027
+ animations: [
1028
+ { prop: "opacity", from: 0, to: 1, duration: 300, ease: "cubic.out" },
1029
+ { prop: "blur", from: { min: 3.2, max: 40 }, to: 0, duration: 550, ease: "circ.out", jitterDelay: 330 },
1030
+ { prop: "translateZ", from: -600, to: 0, duration: 550, ease: "sine.out", jitterDelay: 190, perspective: 350 },
1031
+ { prop: "rotate", from: -690, to: 0, duration: 650, ease: "quart.out", transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
1032
+ { prop: "scaleX", from: { min: 0.3, max: 3.75 }, to: 1, duration: 550, ease: "expo.out" },
1033
+ { prop: "scaleY", from: 0.2, to: 1, duration: 600, ease: "quart.out", transformOrigin: { x: 0, y: 0.5, z: -100 } },
1034
+ ],
1035
+ };
1036
+ export const tipInScatterSnap = {
1037
+ name: "enter/tip-in-scatter-snap",
1038
+ split: "character",
1039
+ stagger: 20,
1040
+ staggerOrder: "edges",
1041
+ perspective: 650,
1042
+ animations: [
1043
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "expo.out" },
1044
+ { prop: "rotate", from: { min: -689.006, max: 689.006 }, to: 0, duration: 550, ease: "expo.out", jitterDelay: 60 },
1045
+ { prop: "translateY", from: { min: -713.35, max: 713.35 }, to: 0, duration: 750, ease: "elastic.out" },
1046
+ { prop: "translateZ", from: -300, to: 0, duration: 550, ease: "quart.out", perspective: 250 },
1047
+ { prop: "skewX", from: { min: -135.569, max: 135.569 }, to: 0, duration: 650, ease: "bounce.out", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
1048
+ ],
1049
+ };
1050
+ export const swivelScatterInward = {
1051
+ name: "enter/swivel-scatter-inward",
1052
+ split: "character",
1053
+ stagger: 30,
1054
+ staggerOrder: "edges",
1055
+ perspective: 500,
1056
+ transformOrigin: { x: 0.5, y: 0.5 },
1057
+ animations: [
1058
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "back.out" },
1059
+ { prop: "translateY", from: 110, to: 0, duration: 750, ease: "elastic.out", jitterDelay: 350 },
1060
+ { prop: "rotateY", from: -450, to: 0, duration: 750, ease: "sine.out", jitterDelay: 130 },
1061
+ { prop: "blur", from: { min: 3.8, max: 47.5 }, to: 0, duration: 750, ease: "cubic.out" },
1062
+ { prop: "translateZ", from: -400, to: 0, duration: 550, ease: "sine.out" },
1063
+ ],
1064
+ };
1065
+ export const toppleScatterKick = {
1066
+ name: "enter/topple-scatter-kick",
1067
+ split: "character",
1068
+ stagger: 35,
1069
+ staggerOrder: "random",
1070
+ perspective: 400,
1071
+ transformOrigin: { x: 0.5, y: 1 },
1072
+ animations: [
1073
+ { prop: "opacity", from: 0, to: 1, duration: 600, ease: "quart.out" },
1074
+ { prop: "translateY", from: -90, to: 0, duration: 650, ease: "back.out", jitterDelay: 290 },
1075
+ { prop: "rotateX", from: { min: -1884.898, max: 1884.898 }, to: 0, duration: 800, ease: "back.out", jitterDelay: 200, transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
1076
+ { prop: "scaleY", from: { min: 0.06, max: 0.75 }, to: 1, duration: 550, ease: "expo.out" },
1077
+ { prop: "rotate", from: { min: -2011.127, max: 2011.127 }, to: 0, duration: 850, ease: "quart.out", jitterDelay: 110, transformOrigin: { x: 1, y: 1 } },
1078
+ { prop: "scale", from: 0.45, to: 1, duration: 800, ease: "quart.out", jitterDelay: 160, transformOrigin: { x: 0.5, y: 0.5 } },
1079
+ ],
1080
+ };
1081
+ export const collapseSnap = {
1082
+ name: "exit/collapse-snap",
1083
+ split: "word",
1084
+ stagger: 55,
1085
+ animations: [
1086
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "power2.in" },
1087
+ { prop: "translateX", from: 0, to: -30, duration: 550, ease: "sine.in" },
1088
+ { prop: "translateY", from: 0, to: -30, duration: 450, ease: "back.in" },
1089
+ { prop: "scale", from: 1, to: 0.65, duration: 500, ease: "expo.in" },
1090
+ ],
1091
+ };
1092
+ export const leanOutSnap = {
1093
+ name: "exit/lean-out-snap",
1094
+ split: "character",
1095
+ stagger: 60,
1096
+ animations: [
1097
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1098
+ { prop: "rotate", from: 0, to: 60, duration: 450, ease: "expo.in" },
1099
+ ],
1100
+ };
1101
+ export const exitXBurst = {
1102
+ name: "exit/exit-x-burst",
1103
+ split: "character",
1104
+ stagger: 45,
1105
+ staggerOrder: "end",
1106
+ animations: [
1107
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1108
+ { prop: "translateX", from: 0, to: { min: -106.907, max: 106.907 }, duration: 600, ease: "power2.in" },
1109
+ { prop: "skewX", from: 0, to: -10, duration: 450, ease: "sine.in" },
1110
+ ],
1111
+ };
1112
+ export const mistOut = {
1113
+ name: "exit/mist-out",
1114
+ split: "character",
1115
+ stagger: 30,
1116
+ animations: [
1117
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "circ.in" },
1118
+ { prop: "blur", from: 0, to: 9, duration: 450, ease: "sine.in" },
1119
+ ],
1120
+ };
1121
+ export const shearOutBurst = {
1122
+ name: "exit/shear-out-burst",
1123
+ split: "character",
1124
+ stagger: 35,
1125
+ staggerOrder: "center",
1126
+ animations: [
1127
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "power2.in" },
1128
+ { prop: "skewX", from: 0, to: { min: -20.602, max: 20.602 }, duration: 450, ease: "expo.in" },
1129
+ ],
1130
+ };
1131
+ export const compressXKick = {
1132
+ name: "exit/compress-x-kick",
1133
+ split: "character",
1134
+ stagger: 30,
1135
+ animations: [
1136
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "expo.in" },
1137
+ { prop: "translateX", from: 0, to: 60, duration: 600, ease: "back.in", jitterDelay: 40 },
1138
+ { prop: "scaleY", from: 1, to: 0.5, duration: 450, ease: "circ.in" },
1139
+ { prop: "scaleX", from: 1, to: 1.2, duration: 400, ease: "back.in", transformOrigin: { x: 0, y: 1 } },
1140
+ ],
1141
+ };
1142
+ export const riseOutBurst = {
1143
+ name: "exit/rise-out-burst",
1144
+ split: "character",
1145
+ stagger: 60,
1146
+ staggerOrder: "edges",
1147
+ animations: [
1148
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "power2.in" },
1149
+ { prop: "translateY", from: 0, to: { min: -65.044, max: 65.044 }, duration: 450, ease: "sine.in", jitterDelay: 70 },
1150
+ ],
1151
+ };
1152
+ export const flipOutBurst = {
1153
+ name: "exit/flip-out-burst",
1154
+ split: "character",
1155
+ stagger: 20,
1156
+ staggerOrder: "end",
1157
+ perspective: 450,
1158
+ transformOrigin: { x: 0.5, y: 1 },
1159
+ animations: [
1160
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "back.in" },
1161
+ { prop: "scaleY", from: 1, to: { min: 0.5, max: 6.25 }, duration: 500, ease: "circ.in", transformOrigin: { x: 1, y: 1, z: 100 } },
1162
+ { prop: "rotateX", from: 0, to: -270, duration: 450, ease: "power2.in", perspective: 300 },
1163
+ { prop: "rotate", from: 0, to: { min: -686.717, max: 686.717 }, duration: 650, ease: "back.in", transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
1164
+ { prop: "scaleX", from: 1, to: 1.5, duration: 700, ease: "circ.in", jitterDelay: 330 },
1165
+ ],
1166
+ };
1167
+ export const pivotOutBurst = {
1168
+ name: "exit/pivot-out-burst",
1169
+ split: "character",
1170
+ stagger: 45,
1171
+ perspective: 450,
1172
+ transformOrigin: { x: 0.5, y: 0.5 },
1173
+ animations: [
1174
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "back.in" },
1175
+ { prop: "translateX", from: 0, to: { min: -442.009, max: 442.009 }, duration: 450, ease: "sine.in" },
1176
+ { prop: "rotateY", from: 0, to: 150, duration: 450, ease: "power2.in", transformOrigin: { x: 0.5, y: 0.5, z: -150 }, perspective: 350 },
1177
+ { prop: "blur", from: 0, to: 16, duration: 400, ease: "back.in" },
1178
+ { prop: "rotate", from: 0, to: { min: -1390.845, max: 1390.845 }, duration: 450, ease: "circ.in", transformOrigin: { x: 1, y: 0.5 } },
1179
+ ],
1180
+ };
1181
+ export const flipOutCurl = {
1182
+ name: "exit/flip-out-curl",
1183
+ split: "character",
1184
+ stagger: 40,
1185
+ staggerOrder: "end",
1186
+ perspective: 300,
1187
+ transformOrigin: { x: 0.5, y: 1 },
1188
+ animations: [
1189
+ { prop: "opacity", from: 1, to: 0, duration: 500, ease: "power2.in" },
1190
+ { prop: "scaleY", from: 1, to: 2, duration: 600, ease: "expo.in" },
1191
+ { prop: "rotateX", from: 0, to: 150, duration: 600, ease: "circ.in", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
1192
+ { prop: "translateY", from: 0, to: 140, duration: 450, ease: "sine.in", jitterDelay: 250 },
1193
+ ],
1194
+ };
1195
+ export const turnOutBurst = {
1196
+ name: "exit/turn-out-burst",
1197
+ split: "character",
1198
+ stagger: 30,
1199
+ staggerOrder: "center",
1200
+ perspective: 500,
1201
+ transformOrigin: { x: 0.5, y: 0.5 },
1202
+ animations: [
1203
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "sine.in" },
1204
+ { prop: "translateY", from: 0, to: { min: -735.221, max: 735.221 }, duration: 650, ease: "expo.in", jitterDelay: 260 },
1205
+ { prop: "translateZ", from: 0, to: -500, duration: 700, ease: "sine.in", jitterDelay: 340 },
1206
+ { prop: "rotateY", from: 0, to: 330, duration: 550, ease: "back.in", jitterDelay: 210, transformOrigin: { x: 1, y: 0 }, perspective: 400 },
1207
+ { prop: "blur", from: 0, to: { min: 2.6, max: 32.5 }, duration: 550, ease: "back.in" },
1208
+ ],
1209
+ };
1210
+ export const squashXBurst = {
1211
+ name: "exit/squash-x-burst",
1212
+ split: "character",
1213
+ stagger: 30,
1214
+ animations: [
1215
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "back.in" },
1216
+ { prop: "skewX", from: 0, to: { min: -180.065, max: 180.065 }, duration: 300, ease: "circ.in", jitterDelay: 130 },
1217
+ { prop: "scale", from: 1, to: { min: 0.1, max: 1.25 }, duration: 600, ease: "expo.in" },
1218
+ { prop: "blur", from: 0, to: 18, duration: 400, ease: "circ.in", jitterDelay: 180 },
1219
+ { prop: "scaleX", from: 1, to: { min: 0.02, max: 0.25 }, duration: 450, ease: "back.in" },
1220
+ ],
1221
+ };
1222
+ export const swivelOutBurst = {
1223
+ name: "exit/swivel-out-burst",
1224
+ split: "character",
1225
+ stagger: 45,
1226
+ staggerOrder: "edges",
1227
+ perspective: 600,
1228
+ transformOrigin: { x: 0.5, y: 0.5 },
1229
+ animations: [
1230
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "sine.in" },
1231
+ { prop: "blur", from: 0, to: 11, duration: 400, ease: "circ.in" },
1232
+ { prop: "translateX", from: 0, to: { min: -798.874, max: 798.874 }, duration: 700, ease: "circ.in", jitterDelay: 220 },
1233
+ { prop: "rotate", from: 0, to: 360, duration: 600, ease: "circ.in", jitterDelay: 60, transformOrigin: { x: 0, y: 0.5, z: -100 } },
1234
+ { prop: "rotateY", from: 0, to: -270, duration: 400, ease: "circ.in", jitterDelay: 120, transformOrigin: { x: 0.5, y: 0.5, z: -150 }, perspective: 300 },
1235
+ ],
1236
+ };
1237
+ export const toppleOutBurst = {
1238
+ name: "exit/topple-out-burst",
1239
+ split: "character",
1240
+ stagger: 40,
1241
+ staggerOrder: "edges",
1242
+ perspective: 250,
1243
+ transformOrigin: { x: 0.5, y: 1 },
1244
+ animations: [
1245
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "back.in" },
1246
+ { prop: "rotateY", from: 0, to: { min: -730.346, max: 730.346 }, duration: 500, ease: "circ.in", jitterDelay: 300, transformOrigin: { x: 0, y: 1 } },
1247
+ { prop: "rotate", from: 0, to: { min: -682.323, max: 682.323 }, duration: 650, ease: "power2.in", transformOrigin: { x: 0.5, y: 1, z: 100 } },
1248
+ { prop: "scale", from: 1, to: 0.6, duration: 500, ease: "back.in", jitterDelay: 120, transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
1249
+ { prop: "rotateX", from: 0, to: { min: -379.093, max: 379.093 }, duration: 600, ease: "expo.in", jitterDelay: 220 },
1250
+ { prop: "translateZ", from: 0, to: -500, duration: 650, ease: "power2.in", perspective: 250 },
1251
+ ],
1252
+ };
1253
+ export const flattenY = {
1254
+ name: "exit/flatten-y",
1255
+ split: "word",
1256
+ stagger: 55,
1257
+ animations: [
1258
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "expo.in" },
1259
+ { prop: "scaleY", from: 1, to: 0.2, duration: 600, ease: "circ.in" },
1260
+ { prop: "translateY", from: 0, to: 140, duration: 600, ease: "back.in" },
1261
+ ],
1262
+ };
1263
+ export const tiltOutBurstLoose = {
1264
+ name: "exit/tilt-out-burst-loose",
1265
+ split: "character",
1266
+ stagger: 30,
1267
+ animations: [
1268
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "expo.in" },
1269
+ { prop: "scale", from: 1, to: 0.6, duration: 650, ease: "power2.in", jitterDelay: 110 },
1270
+ { prop: "scaleX", from: 1, to: { min: 0, max: 0 }, duration: 650, ease: "sine.in", jitterDelay: 310 },
1271
+ { prop: "rotate", from: 0, to: { min: -1702.922, max: 1702.922 }, duration: 550, ease: "power2.in" },
1272
+ ],
1273
+ };
1274
+ export const swirlOutCurl = {
1275
+ name: "exit/swirl-out-curl",
1276
+ split: "character",
1277
+ stagger: 60,
1278
+ staggerOrder: "center",
1279
+ perspective: 200,
1280
+ animations: [
1281
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "circ.in" },
1282
+ { prop: "rotate", from: 0, to: 600, duration: 450, ease: "circ.in", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1283
+ { prop: "scale", from: 1, to: 0.55, duration: 700, ease: "sine.in", transformOrigin: { x: 0.5, y: 1 } },
1284
+ { prop: "translateZ", from: 0, to: -300, duration: 400, ease: "power2.in" },
1285
+ ],
1286
+ };
1287
+ export const toppleOutBurstCurl = {
1288
+ name: "exit/topple-out-burst-curl",
1289
+ split: "character",
1290
+ stagger: 35,
1291
+ perspective: 400,
1292
+ transformOrigin: { x: 0.5, y: 1 },
1293
+ animations: [
1294
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "expo.in" },
1295
+ { prop: "rotateX", from: 0, to: 180, duration: 650, ease: "circ.in", transformOrigin: { x: 1, y: 0.5, z: 100 }, perspective: 450 },
1296
+ { prop: "scaleX", from: 1, to: { min: 0.06, max: 0.75 }, duration: 400, ease: "sine.in", jitterDelay: 170, transformOrigin: { x: 1, y: 0.5, z: 100 } },
1297
+ { prop: "scale", from: 1, to: { min: 0.11, max: 1.375 }, duration: 500, ease: "expo.in", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1298
+ { prop: "translateX", from: 0, to: { min: -716.595, max: 716.595 }, duration: 550, ease: "sine.in" },
1299
+ ],
1300
+ };
1301
+ export const squashXBurstCurl = {
1302
+ name: "exit/squash-x-burst-curl",
1303
+ split: "character",
1304
+ stagger: 45,
1305
+ staggerOrder: "end",
1306
+ animations: [
1307
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "power2.in" },
1308
+ { prop: "skewX", from: 0, to: { min: -87.929, max: 87.929 }, duration: 450, ease: "back.in", jitterDelay: 350 },
1309
+ { prop: "scaleY", from: 1, to: 2, duration: 500, ease: "power2.in", transformOrigin: { x: 0.5, y: 0, z: -100 } },
1310
+ { prop: "scaleX", from: 1, to: { min: 0.04, max: 0.5 }, duration: 500, ease: "power2.in", transformOrigin: { x: 1, y: 0.5 } },
1311
+ ],
1312
+ };
1313
+ export const tipOutBurst = {
1314
+ name: "exit/tip-out-burst",
1315
+ split: "character",
1316
+ stagger: 35,
1317
+ animations: [
1318
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "circ.in" },
1319
+ { prop: "scale", from: 1, to: { min: 0.12, max: 1.5 }, duration: 650, ease: "power2.in" },
1320
+ { prop: "rotate", from: 0, to: { min: -2817.788, max: 2817.788 }, duration: 700, ease: "expo.in" },
1321
+ { prop: "scaleX", from: 1, to: 0.1, duration: 600, ease: "expo.in" },
1322
+ { prop: "skewX", from: 0, to: -25, duration: 350, ease: "power2.in" },
1323
+ { prop: "blur", from: 0, to: { min: 2.4, max: 30 }, duration: 350, ease: "power2.in", jitterDelay: 220 },
1324
+ { prop: "scaleY", from: 1, to: 0.1, duration: 450, ease: "power2.in", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
1325
+ ],
1326
+ };
1327
+ export const foldOutBurst = {
1328
+ name: "exit/fold-out-burst",
1329
+ split: "character",
1330
+ stagger: 45,
1331
+ perspective: 500,
1332
+ transformOrigin: { x: 0.5, y: 0.5 },
1333
+ animations: [
1334
+ { prop: "opacity", from: 1, to: 0, duration: 500, ease: "expo.in" },
1335
+ { prop: "rotateX", from: 0, to: { min: -838.542, max: 838.542 }, duration: 600, ease: "expo.in", jitterDelay: 340 },
1336
+ { prop: "rotateY", from: 0, to: { min: -1504.682, max: 1504.682 }, duration: 650, ease: "circ.in", jitterDelay: 50, perspective: 200 },
1337
+ { prop: "blur", from: 0, to: { min: 1.8, max: 22.5 }, duration: 450, ease: "back.in" },
1338
+ { prop: "skewX", from: 0, to: { min: -158.202, max: 158.202 }, duration: 550, ease: "sine.in" },
1339
+ ],
1340
+ };
1341
+ export const foldOutBurstCurl = {
1342
+ name: "exit/fold-out-burst-curl",
1343
+ split: "character",
1344
+ stagger: 50,
1345
+ perspective: 300,
1346
+ transformOrigin: { x: 0.5, y: 1 },
1347
+ animations: [
1348
+ { prop: "opacity", from: 1, to: 0, duration: 500, ease: "power2.in" },
1349
+ { prop: "rotateX", from: 0, to: { min: -1671.432, max: 1671.432 }, duration: 500, ease: "power2.in", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1350
+ { prop: "scale", from: 1, to: 0.55, duration: 400, ease: "power2.in", jitterDelay: 210, transformOrigin: { x: 1, y: 0.5, z: 100 } },
1351
+ { prop: "translateX", from: 0, to: { min: -842.788, max: 842.788 }, duration: 600, ease: "expo.in" },
1352
+ { prop: "scaleY", from: 1, to: { min: 0.4, max: 5 }, duration: 450, ease: "back.in", transformOrigin: { x: 0, y: 0.5 } },
1353
+ ],
1354
+ };
1355
+ export const flipOutLoose = {
1356
+ name: "exit/flip-out-loose",
1357
+ split: "character",
1358
+ stagger: 55,
1359
+ staggerOrder: "end",
1360
+ perspective: 650,
1361
+ transformOrigin: { x: 0.5, y: 1 },
1362
+ animations: [
1363
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "sine.in" },
1364
+ { prop: "translateX", from: 0, to: 210, duration: 700, ease: "power2.in", jitterDelay: 240 },
1365
+ { prop: "translateZ", from: 0, to: -500, duration: 550, ease: "back.in", perspective: 650 },
1366
+ { prop: "rotateX", from: 0, to: 450, duration: 500, ease: "sine.in", perspective: 350 },
1367
+ ],
1368
+ };
1369
+ export const tipOutBurstCurl = {
1370
+ name: "exit/tip-out-burst-curl",
1371
+ split: "character",
1372
+ stagger: 30,
1373
+ perspective: 250,
1374
+ animations: [
1375
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "back.in" },
1376
+ { prop: "rotate", from: 0, to: { min: -8211.136, max: 8211.136 }, duration: 600, ease: "sine.in", transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
1377
+ { prop: "translateZ", from: 0, to: -500, duration: 600, ease: "expo.in", jitterDelay: 250, perspective: 350 },
1378
+ { prop: "scaleX", from: 1, to: { min: 0.6, max: 7.5 }, duration: 500, ease: "back.in", jitterDelay: 360, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
1379
+ ],
1380
+ };
1381
+ export const toppleOutBurstSnap = {
1382
+ name: "exit/topple-out-burst-snap",
1383
+ split: "character",
1384
+ stagger: 50,
1385
+ staggerOrder: "end",
1386
+ perspective: 250,
1387
+ transformOrigin: { x: 0.5, y: 1 },
1388
+ animations: [
1389
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "circ.in" },
1390
+ { prop: "blur", from: 0, to: { min: 5.6, max: 70 }, duration: 550, ease: "back.in", jitterDelay: 320 },
1391
+ { prop: "translateZ", from: 0, to: -700, duration: 450, ease: "power2.in", jitterDelay: 330 },
1392
+ { prop: "rotate", from: 0, to: { min: -2756.425, max: 2756.425 }, duration: 700, ease: "back.in", jitterDelay: 100 },
1393
+ { prop: "translateY", from: 0, to: { min: -2088.237, max: 2088.237 }, duration: 650, ease: "power2.in" },
1394
+ { prop: "rotateX", from: 0, to: { min: -2681.519, max: 2681.519 }, duration: 450, ease: "expo.in", jitterDelay: 170, perspective: 100 },
1395
+ ],
1396
+ };
1397
+ export const foldOutBurst2 = {
1398
+ name: "exit/fold-out-burst-2",
1399
+ split: "character",
1400
+ stagger: 55,
1401
+ perspective: 550,
1402
+ transformOrigin: { x: 0.5, y: 1 },
1403
+ animations: [
1404
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "power2.in" },
1405
+ { prop: "translateY", from: 0, to: -150, duration: 550, ease: "back.in" },
1406
+ { prop: "translateX", from: 0, to: -200, duration: 500, ease: "back.in" },
1407
+ { prop: "rotateX", from: 0, to: { min: -1910.147, max: 1910.147 }, duration: 550, ease: "circ.in", transformOrigin: { x: 0.5, y: 1 } },
1408
+ ],
1409
+ };
1410
+ export const tiltOutBurstWord = {
1411
+ name: "exit/tilt-out-burst-word",
1412
+ split: "word",
1413
+ stagger: 25,
1414
+ staggerOrder: "center",
1415
+ animations: [
1416
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "circ.in" },
1417
+ { prop: "rotate", from: 0, to: -180, duration: 500, ease: "sine.in" },
1418
+ { prop: "skewX", from: 0, to: 25, duration: 400, ease: "back.in", jitterDelay: 250, transformOrigin: { x: 0.5, y: 0 } },
1419
+ { prop: "blur", from: 0, to: { min: 1.4, max: 17.5 }, duration: 500, ease: "sine.in" },
1420
+ ],
1421
+ };
1422
+ export const compressXBurst = {
1423
+ name: "exit/compress-x-burst",
1424
+ split: "character",
1425
+ stagger: 25,
1426
+ staggerOrder: "end",
1427
+ animations: [
1428
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1429
+ { prop: "scaleX", from: 1, to: { min: 0.4, max: 5 }, duration: 600, ease: "circ.in", transformOrigin: { x: 0, y: 0 } },
1430
+ { prop: "blur", from: 0, to: 16, duration: 500, ease: "circ.in" },
1431
+ { prop: "scaleY", from: 1, to: { min: 0.8, max: 10 }, duration: 450, ease: "back.in", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1432
+ { prop: "translateY", from: 0, to: -120, duration: 500, ease: "expo.in", jitterDelay: 240 },
1433
+ ],
1434
+ };
1435
+ export const liftOutBurst = {
1436
+ name: "exit/lift-out-burst",
1437
+ split: "character",
1438
+ stagger: 15,
1439
+ animations: [
1440
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "circ.in" },
1441
+ { prop: "blur", from: 0, to: 16, duration: 300, ease: "back.in" },
1442
+ { prop: "translateY", from: 0, to: { min: -348.088, max: 348.088 }, duration: 600, ease: "sine.in" },
1443
+ { prop: "translateX", from: 0, to: { min: -417.724, max: 417.724 }, duration: 400, ease: "sine.in" },
1444
+ ],
1445
+ };
1446
+ export const swivelOutCurl = {
1447
+ name: "exit/swivel-out-curl",
1448
+ split: "character",
1449
+ stagger: 45,
1450
+ perspective: 350,
1451
+ transformOrigin: { x: 0.5, y: 0.5 },
1452
+ animations: [
1453
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "expo.in" },
1454
+ { prop: "rotateY", from: 0, to: -420, duration: 500, ease: "expo.in", transformOrigin: { x: 0, y: 0, z: -100 } },
1455
+ { prop: "blur", from: 0, to: 13, duration: 550, ease: "circ.in", jitterDelay: 210 },
1456
+ ],
1457
+ };
1458
+ export const flattenYBurst = {
1459
+ name: "exit/flatten-y-burst",
1460
+ split: "character",
1461
+ stagger: 55,
1462
+ perspective: 200,
1463
+ animations: [
1464
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "expo.in" },
1465
+ { prop: "translateZ", from: 0, to: -600, duration: 400, ease: "sine.in" },
1466
+ { prop: "scaleY", from: 1, to: { min: 0.04, max: 0.5 }, duration: 600, ease: "sine.in", transformOrigin: { x: 1, y: 0.5, z: 100 } },
1467
+ { prop: "skewX", from: 0, to: { min: -95.481, max: 95.481 }, duration: 550, ease: "expo.in", transformOrigin: { x: 0.5, y: 0.5 } },
1468
+ { prop: "translateX", from: 0, to: { min: -994.343, max: 994.343 }, duration: 500, ease: "back.in" },
1469
+ ],
1470
+ };
1471
+ export const compressXBurstCurl = {
1472
+ name: "exit/compress-x-burst-curl",
1473
+ split: "character",
1474
+ stagger: 35,
1475
+ staggerOrder: "center",
1476
+ perspective: 300,
1477
+ animations: [
1478
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "power2.in" },
1479
+ { prop: "scaleX", from: 1, to: { min: 0.3, max: 3.75 }, duration: 500, ease: "power2.in", jitterDelay: 300, transformOrigin: { x: 0, y: 0, z: -100 } },
1480
+ { prop: "blur", from: 0, to: 19, duration: 450, ease: "sine.in", jitterDelay: 270 },
1481
+ { prop: "translateZ", from: 0, to: -300, duration: 550, ease: "back.in", jitterDelay: 200 },
1482
+ { prop: "scaleY", from: 1, to: { min: 0.6, max: 7.5 }, duration: 450, ease: "expo.in", transformOrigin: { x: 0.5, y: 1 } },
1483
+ ],
1484
+ };
1485
+ export const tipOutBurstLoose = {
1486
+ name: "exit/tip-out-burst-loose",
1487
+ split: "character",
1488
+ stagger: 50,
1489
+ staggerOrder: "end",
1490
+ animations: [
1491
+ { prop: "opacity", from: 1, to: 0, duration: 500, ease: "power2.in" },
1492
+ { prop: "rotate", from: 0, to: { min: -1061.328, max: 1061.328 }, duration: 700, ease: "circ.in", jitterDelay: 260 },
1493
+ { prop: "skewX", from: 0, to: -30, duration: 500, ease: "sine.in" },
1494
+ ],
1495
+ };
1496
+ export const swivelOutBurstCurl = {
1497
+ name: "exit/swivel-out-burst-curl",
1498
+ split: "character",
1499
+ stagger: 60,
1500
+ perspective: 600,
1501
+ transformOrigin: { x: 0.5, y: 0.5 },
1502
+ animations: [
1503
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "expo.in" },
1504
+ { prop: "rotate", from: 0, to: { min: -1383.56, max: 1383.56 }, duration: 400, ease: "circ.in", jitterDelay: 160, transformOrigin: { x: 0.5, y: 0 } },
1505
+ { prop: "translateZ", from: 0, to: -500, duration: 500, ease: "back.in", jitterDelay: 330 },
1506
+ { prop: "scale", from: 1, to: 0.6, duration: 500, ease: "expo.in", transformOrigin: { x: 1, y: 0 } },
1507
+ { prop: "rotateY", from: 0, to: 180, duration: 700, ease: "expo.in", jitterDelay: 310, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
1508
+ ],
1509
+ };
1510
+ export const leanOutBurst = {
1511
+ name: "exit/lean-out-burst",
1512
+ split: "character",
1513
+ stagger: 55,
1514
+ perspective: 400,
1515
+ animations: [
1516
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "back.in" },
1517
+ { prop: "scale", from: 1, to: { min: 0.07, max: 0.875 }, duration: 550, ease: "circ.in", jitterDelay: 500, transformOrigin: { x: 1, y: 0.5 } },
1518
+ { prop: "translateZ", from: 0, to: -550, duration: 450, ease: "back.in", jitterDelay: 320, perspective: 250 },
1519
+ { prop: "skewX", from: 0, to: { min: -426.352, max: 426.352 }, duration: 350, ease: "circ.in", jitterDelay: 120, transformOrigin: { x: 1, y: 0.5 } },
1520
+ { prop: "rotate", from: 0, to: { min: -4167.85, max: 4167.85 }, duration: 600, ease: "sine.in", jitterDelay: 260 },
1521
+ { prop: "scaleY", from: 1, to: { min: 0.6, max: 7.5 }, duration: 650, ease: "back.in", jitterDelay: 490, transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
1522
+ { prop: "scaleX", from: 1, to: { min: 0.6, max: 7.5 }, duration: 600, ease: "sine.in", jitterDelay: 380, transformOrigin: { x: 0.5, y: 0 } },
1523
+ { prop: "blur", from: 0, to: { min: 2.6, max: 32.5 }, duration: 300, ease: "expo.in", jitterDelay: 410 },
1524
+ ],
1525
+ };
1526
+ export const leanOutBurstWord = {
1527
+ name: "exit/lean-out-burst-word",
1528
+ split: "word",
1529
+ stagger: 35,
1530
+ staggerOrder: "edges",
1531
+ perspective: 250,
1532
+ animations: [
1533
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "back.in" },
1534
+ { prop: "scale", from: 1, to: 0.4, duration: 650, ease: "sine.in", transformOrigin: { x: 0, y: 0.5, z: -100 } },
1535
+ { prop: "rotate", from: 0, to: { min: -3398.606, max: 3398.606 }, duration: 650, ease: "expo.in", transformOrigin: { x: 0.5, y: 0, z: -100 } },
1536
+ { prop: "translateX", from: 0, to: { min: -3183.365, max: 3183.365 }, duration: 500, ease: "expo.in", jitterDelay: 300 },
1537
+ { prop: "translateZ", from: 0, to: -850, duration: 400, ease: "expo.in", perspective: 100 },
1538
+ { prop: "translateY", from: 0, to: { min: -1398.153, max: 1398.153 }, duration: 700, ease: "circ.in" },
1539
+ ],
1540
+ };
1541
+ export const leanOutBurstCurl = {
1542
+ name: "exit/lean-out-burst-curl",
1543
+ split: "character",
1544
+ stagger: 20,
1545
+ perspective: 150,
1546
+ animations: [
1547
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "expo.in" },
1548
+ { prop: "blur", from: 0, to: { min: 5.6, max: 70 }, duration: 350, ease: "power2.in", jitterDelay: 130 },
1549
+ { prop: "rotate", from: 0, to: { min: -9227.372, max: 9227.372 }, duration: 550, ease: "power2.in", jitterDelay: 120, transformOrigin: { x: 1, y: 0.5, z: 100 } },
1550
+ { prop: "scale", from: 1, to: { min: 0.09, max: 1.125 }, duration: 600, ease: "sine.in" },
1551
+ { prop: "scaleY", from: 1, to: 0, duration: 450, ease: "circ.in", jitterDelay: 370 },
1552
+ { prop: "translateZ", from: 0, to: -950, duration: 550, ease: "sine.in", jitterDelay: 150, perspective: 200 },
1553
+ ],
1554
+ };
1555
+ export const swivelOut = {
1556
+ name: "exit/swivel-out",
1557
+ split: "word",
1558
+ stagger: 25,
1559
+ perspective: 1250,
1560
+ transformOrigin: { x: 0.5, y: 0.5 },
1561
+ animations: [
1562
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "back.in" },
1563
+ { prop: "rotateY", from: 0, to: -30, duration: 650, ease: "sine.in" },
1564
+ { prop: "translateY", from: 0, to: -70, duration: 400, ease: "back.in" },
1565
+ { prop: "scaleX", from: 1, to: 0.7, duration: 550, ease: "circ.in" },
1566
+ ],
1567
+ };
1568
+ export const dissolveKick = {
1569
+ name: "exit/dissolve-kick",
1570
+ split: "character",
1571
+ stagger: 55,
1572
+ staggerOrder: "edges",
1573
+ animations: [
1574
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "expo.in" },
1575
+ { prop: "blur", from: 0, to: 4, duration: 400, ease: "back.in" },
1576
+ ],
1577
+ };
1578
+ export const riseOutKick = {
1579
+ name: "exit/rise-out-kick",
1580
+ split: "character",
1581
+ stagger: 50,
1582
+ animations: [
1583
+ { prop: "opacity", from: 1, to: 0, duration: 500, ease: "circ.in" },
1584
+ { prop: "translateY", from: 0, to: -50, duration: 450, ease: "back.in" },
1585
+ ],
1586
+ };
1587
+ export const swivelOutKick = {
1588
+ name: "exit/swivel-out-kick",
1589
+ split: "character",
1590
+ stagger: 40,
1591
+ staggerOrder: "random",
1592
+ perspective: 1300,
1593
+ transformOrigin: { x: 0.5, y: 0.5 },
1594
+ animations: [
1595
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "sine.in" },
1596
+ { prop: "scale", from: 1, to: 0.25, duration: 700, ease: "power2.in", jitterDelay: 50 },
1597
+ { prop: "rotateY", from: 0, to: 30, duration: 550, ease: "back.in" },
1598
+ ],
1599
+ };
1600
+ export const twirlOutBurst = {
1601
+ name: "exit/twirl-out-burst",
1602
+ split: "character",
1603
+ stagger: 20,
1604
+ staggerOrder: "center",
1605
+ animations: [
1606
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "circ.in" },
1607
+ { prop: "skewX", from: 0, to: { min: -73.053, max: 73.053 }, duration: 350, ease: "sine.in", jitterDelay: 200 },
1608
+ { prop: "scaleY", from: 1, to: 0.2, duration: 500, ease: "circ.in", transformOrigin: { x: 1, y: 0.5 } },
1609
+ { prop: "rotate", from: 0, to: -540, duration: 700, ease: "sine.in" },
1610
+ ],
1611
+ };
1612
+ export const pinwheelOut = {
1613
+ name: "exit/pinwheel-out",
1614
+ split: "character",
1615
+ stagger: 35,
1616
+ animations: [
1617
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "power2.in" },
1618
+ { prop: "scaleX", from: 1, to: 0.3, duration: 700, ease: "circ.in" },
1619
+ { prop: "rotate", from: 0, to: 600, duration: 450, ease: "circ.in", transformOrigin: { x: 1, y: 1 } },
1620
+ { prop: "blur", from: 0, to: 16, duration: 350, ease: "power2.in" },
1621
+ ],
1622
+ };
1623
+ export const turnOutBurstSnap = {
1624
+ name: "exit/turn-out-burst-snap",
1625
+ split: "character",
1626
+ stagger: 60,
1627
+ staggerOrder: "end",
1628
+ perspective: 300,
1629
+ transformOrigin: { x: 0.5, y: 0.5 },
1630
+ animations: [
1631
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "circ.in" },
1632
+ { prop: "translateZ", from: 0, to: -550, duration: 550, ease: "power2.in" },
1633
+ { prop: "rotateY", from: 0, to: 180, duration: 500, ease: "expo.in", jitterDelay: 250, transformOrigin: { x: 1, y: 1 } },
1634
+ { prop: "scaleY", from: 1, to: { min: 0, max: -2.5 }, duration: 650, ease: "circ.in", jitterDelay: 130, transformOrigin: { x: 0.5, y: 0 } },
1635
+ { prop: "rotate", from: 0, to: 330, duration: 500, ease: "sine.in", transformOrigin: { x: 0.5, y: 0 } },
1636
+ ],
1637
+ };
1638
+ export const swirlOutBurst = {
1639
+ name: "exit/swirl-out-burst",
1640
+ split: "character",
1641
+ stagger: 50,
1642
+ animations: [
1643
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "sine.in" },
1644
+ { prop: "scaleY", from: 1, to: { min: 0.4, max: 5 }, duration: 500, ease: "back.in", jitterDelay: 220 },
1645
+ { prop: "blur", from: 0, to: { min: 5.2, max: 65 }, duration: 500, ease: "sine.in", jitterDelay: 180 },
1646
+ { prop: "skewX", from: 0, to: { min: -156.995, max: 156.995 }, duration: 450, ease: "power2.in", transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
1647
+ { prop: "translateY", from: 0, to: { min: -1468.315, max: 1468.315 }, duration: 650, ease: "back.in", jitterDelay: 220 },
1648
+ { prop: "scale", from: 1, to: 0.8, duration: 450, ease: "expo.in", jitterDelay: 460 },
1649
+ { prop: "rotate", from: 0, to: -360, duration: 600, ease: "expo.in", jitterDelay: 130, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1650
+ ],
1651
+ };
1652
+ export const compressXBurstKick = {
1653
+ name: "exit/compress-x-burst-kick",
1654
+ split: "character",
1655
+ stagger: 50,
1656
+ perspective: 600,
1657
+ animations: [
1658
+ { prop: "opacity", from: 1, to: 0, duration: 500, ease: "power2.in" },
1659
+ { prop: "translateZ", from: 0, to: -400, duration: 400, ease: "power2.in" },
1660
+ { prop: "translateY", from: 0, to: -110, duration: 650, ease: "sine.in" },
1661
+ { prop: "blur", from: 0, to: 20, duration: 350, ease: "back.in" },
1662
+ { prop: "scaleX", from: 1, to: { min: 0.04, max: 0.5 }, duration: 650, ease: "back.in" },
1663
+ ],
1664
+ };
1665
+ export const turnOutBurst2 = {
1666
+ name: "exit/turn-out-burst-2",
1667
+ split: "character",
1668
+ stagger: 35,
1669
+ perspective: 300,
1670
+ transformOrigin: { x: 0.5, y: 0.5 },
1671
+ animations: [
1672
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "circ.in" },
1673
+ { prop: "rotate", from: 0, to: 270, duration: 650, ease: "expo.in", transformOrigin: { x: 0, y: 1 } },
1674
+ { prop: "rotateY", from: 0, to: -510, duration: 600, ease: "expo.in", jitterDelay: 340 },
1675
+ { prop: "scaleX", from: 1, to: 0.1, duration: 500, ease: "power2.in", transformOrigin: { x: 0.5, y: 0 } },
1676
+ { prop: "translateZ", from: 0, to: -350, duration: 600, ease: "expo.in", jitterDelay: 120 },
1677
+ { prop: "scaleY", from: 1, to: { min: 0.3, max: 3.75 }, duration: 400, ease: "back.in", jitterDelay: 140 },
1678
+ ],
1679
+ };
1680
+ export const flattenXLoose = {
1681
+ name: "exit/flatten-x-loose",
1682
+ split: "character",
1683
+ stagger: 25,
1684
+ animations: [
1685
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "sine.in" },
1686
+ { prop: "scaleX", from: 1, to: 2, duration: 650, ease: "circ.in" },
1687
+ { prop: "translateY", from: 0, to: 120, duration: 500, ease: "circ.in", jitterDelay: 100 },
1688
+ ],
1689
+ };
1690
+ export const pivotOutBurstLoose = {
1691
+ name: "exit/pivot-out-burst-loose",
1692
+ split: "character",
1693
+ stagger: 45,
1694
+ staggerOrder: "center",
1695
+ perspective: 550,
1696
+ transformOrigin: { x: 0.5, y: 0.5 },
1697
+ animations: [
1698
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1699
+ { prop: "rotateY", from: 0, to: { min: -1634.263, max: 1634.263 }, duration: 600, ease: "power2.in", jitterDelay: 300, transformOrigin: { x: 0.5, y: 1 } },
1700
+ { prop: "translateZ", from: 0, to: -400, duration: 500, ease: "sine.in" },
1701
+ ],
1702
+ };
1703
+ export const flattenXBurstLoose = {
1704
+ name: "exit/flatten-x-burst-loose",
1705
+ split: "character",
1706
+ stagger: 15,
1707
+ animations: [
1708
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "circ.in" },
1709
+ { prop: "skewX", from: 0, to: { min: -98.309, max: 98.309 }, duration: 500, ease: "back.in" },
1710
+ { prop: "blur", from: 0, to: { min: 2, max: 25 }, duration: 500, ease: "power2.in" },
1711
+ { prop: "scaleX", from: 1, to: 0.1, duration: 600, ease: "power2.in", jitterDelay: 160, transformOrigin: { x: 1, y: 0 } },
1712
+ ],
1713
+ };
1714
+ export const turnOutBurstDeep = {
1715
+ name: "exit/turn-out-burst-deep",
1716
+ split: "character",
1717
+ stagger: 35,
1718
+ perspective: 550,
1719
+ transformOrigin: { x: 0.5, y: 0.5 },
1720
+ animations: [
1721
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1722
+ { prop: "rotate", from: 0, to: 420, duration: 400, ease: "back.in", jitterDelay: 220, transformOrigin: { x: 0, y: 0.5 } },
1723
+ { prop: "scaleX", from: 1, to: { min: 0.3, max: 3.75 }, duration: 600, ease: "power2.in", jitterDelay: 270, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1724
+ { prop: "translateZ", from: 0, to: -300, duration: 550, ease: "power2.in", perspective: 500 },
1725
+ { prop: "rotateY", from: 0, to: { min: -1514.115, max: 1514.115 }, duration: 650, ease: "sine.in", transformOrigin: { x: 1, y: 1 }, perspective: 400 },
1726
+ { prop: "skewX", from: 0, to: 30, duration: 400, ease: "circ.in", jitterDelay: 130 },
1727
+ ],
1728
+ };
1729
+ export const leanOutBurstSwarm = {
1730
+ name: "exit/lean-out-burst-swarm",
1731
+ split: "character",
1732
+ stagger: 20,
1733
+ staggerOrder: "random",
1734
+ animations: [
1735
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "circ.in" },
1736
+ { prop: "rotate", from: 0, to: { min: -708.308, max: 708.308 }, duration: 400, ease: "power2.in", transformOrigin: { x: 0.5, y: 0.5 } },
1737
+ { prop: "blur", from: 0, to: 15, duration: 550, ease: "circ.in" },
1738
+ ],
1739
+ };
1740
+ export const toppleOutBurstKick = {
1741
+ name: "exit/topple-out-burst-kick",
1742
+ split: "character",
1743
+ stagger: 30,
1744
+ staggerOrder: "end",
1745
+ perspective: 350,
1746
+ transformOrigin: { x: 0.5, y: 0.5 },
1747
+ animations: [
1748
+ { prop: "opacity", from: 1, to: 0, duration: 250, ease: "circ.in" },
1749
+ { prop: "skewX", from: 0, to: { min: -103.077, max: 103.077 }, duration: 600, ease: "back.in", jitterDelay: 200 },
1750
+ { prop: "scale", from: 1, to: { min: 0.1, max: 1.25 }, duration: 650, ease: "sine.in", jitterDelay: 300, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
1751
+ { prop: "rotateX", from: 0, to: -540, duration: 450, ease: "back.in", perspective: 650 },
1752
+ { prop: "rotate", from: 0, to: -120, duration: 600, ease: "circ.in", transformOrigin: { x: 1, y: 1 } },
1753
+ { prop: "rotateY", from: 0, to: { min: -513.409, max: 513.409 }, duration: 500, ease: "back.in", jitterDelay: 340, perspective: 600 },
1754
+ { prop: "translateZ", from: 0, to: -250, duration: 500, ease: "back.in", jitterDelay: 90, perspective: 500 },
1755
+ ],
1756
+ };
1757
+ export const turnOutBurstSwarm = {
1758
+ name: "exit/turn-out-burst-swarm",
1759
+ split: "character",
1760
+ stagger: 40,
1761
+ staggerOrder: "random",
1762
+ perspective: 200,
1763
+ transformOrigin: { x: 0.5, y: 0.5 },
1764
+ animations: [
1765
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "expo.in" },
1766
+ { prop: "scale", from: 1, to: { min: 0.04, max: 0.5 }, duration: 600, ease: "expo.in" },
1767
+ { prop: "rotateY", from: 0, to: 420, duration: 600, ease: "sine.in", jitterDelay: 130, perspective: 300 },
1768
+ { prop: "translateZ", from: 0, to: -400, duration: 550, ease: "circ.in" },
1769
+ { prop: "translateY", from: 0, to: { min: -531.079, max: 531.079 }, duration: 550, ease: "expo.in" },
1770
+ ],
1771
+ };
1772
+ export const tiltOutBurst2 = {
1773
+ name: "exit/tilt-out-burst",
1774
+ split: "word",
1775
+ stagger: 45,
1776
+ perspective: 200,
1777
+ animations: [
1778
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "back.in" },
1779
+ { prop: "rotate", from: 0, to: { min: -1463.134, max: 1463.134 }, duration: 600, ease: "circ.in", transformOrigin: { x: 1, y: 0.5 } },
1780
+ { prop: "scaleX", from: 1, to: 2, duration: 450, ease: "back.in" },
1781
+ { prop: "skewX", from: 0, to: { min: -93.8, max: 93.8 }, duration: 550, ease: "sine.in", jitterDelay: 210 },
1782
+ { prop: "scale", from: 1, to: 0.3, duration: 550, ease: "back.in" },
1783
+ { prop: "translateX", from: 0, to: -130, duration: 500, ease: "back.in", jitterDelay: 290 },
1784
+ { prop: "translateZ", from: 0, to: -550, duration: 400, ease: "back.in" },
1785
+ ],
1786
+ };
1787
+ export const swivelOutBurstLoose = {
1788
+ name: "exit/swivel-out-burst-loose",
1789
+ split: "character",
1790
+ stagger: 35,
1791
+ staggerOrder: "edges",
1792
+ perspective: 550,
1793
+ transformOrigin: { x: 0.5, y: 0.5 },
1794
+ animations: [
1795
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "sine.in" },
1796
+ { prop: "scaleY", from: 1, to: 1.5, duration: 400, ease: "power2.in", jitterDelay: 260, transformOrigin: { x: 0.5, y: 1 } },
1797
+ { prop: "translateZ", from: 0, to: -400, duration: 500, ease: "expo.in", jitterDelay: 70, perspective: 550 },
1798
+ { prop: "translateX", from: 0, to: { min: -499.568, max: 499.568 }, duration: 600, ease: "circ.in" },
1799
+ { prop: "rotateY", from: 0, to: 360, duration: 650, ease: "power2.in", perspective: 650 },
1800
+ ],
1801
+ };
1802
+ export const implodeBurst = {
1803
+ name: "exit/implode-burst",
1804
+ split: "word",
1805
+ stagger: 55,
1806
+ staggerOrder: "end",
1807
+ perspective: 250,
1808
+ animations: [
1809
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "sine.in" },
1810
+ { prop: "skewX", from: 0, to: -30, duration: 450, ease: "expo.in", jitterDelay: 150 },
1811
+ { prop: "translateX", from: 0, to: -100, duration: 400, ease: "expo.in", jitterDelay: 60 },
1812
+ { prop: "scale", from: 1, to: { min: 0.1, max: 1.25 }, duration: 500, ease: "back.in" },
1813
+ { prop: "translateZ", from: 0, to: -450, duration: 500, ease: "back.in" },
1814
+ ],
1815
+ };
1816
+ export const swivelOutLoose = {
1817
+ name: "exit/swivel-out-loose",
1818
+ split: "character",
1819
+ stagger: 35,
1820
+ staggerOrder: "end",
1821
+ perspective: 600,
1822
+ transformOrigin: { x: 0.5, y: 0.5 },
1823
+ animations: [
1824
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "circ.in" },
1825
+ { prop: "scale", from: 1, to: 0.7, duration: 550, ease: "back.in" },
1826
+ { prop: "rotateY", from: 0, to: 210, duration: 450, ease: "circ.in", jitterDelay: 170 },
1827
+ { prop: "translateZ", from: 0, to: -400, duration: 500, ease: "back.in", jitterDelay: 150 },
1828
+ ],
1829
+ };
1830
+ export const compressXBurstLoose = {
1831
+ name: "exit/compress-x-burst-loose",
1832
+ split: "character",
1833
+ stagger: 35,
1834
+ perspective: 550,
1835
+ animations: [
1836
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1837
+ { prop: "scaleY", from: 1, to: { min: 0.4, max: 5 }, duration: 550, ease: "sine.in", transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
1838
+ { prop: "translateZ", from: 0, to: -300, duration: 450, ease: "circ.in", jitterDelay: 300, perspective: 550 },
1839
+ { prop: "scale", from: 1, to: { min: 0.14, max: 1.75 }, duration: 500, ease: "sine.in", jitterDelay: 190, transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
1840
+ { prop: "scaleX", from: 1, to: -1, duration: 500, ease: "circ.in", jitterDelay: 330 },
1841
+ ],
1842
+ };
1843
+ export const foldOutBurstLoose = {
1844
+ name: "exit/fold-out-burst-loose",
1845
+ split: "character",
1846
+ stagger: 25,
1847
+ staggerOrder: "center",
1848
+ perspective: 250,
1849
+ transformOrigin: { x: 0.5, y: 1 },
1850
+ animations: [
1851
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "back.in" },
1852
+ { prop: "translateX", from: 0, to: -190, duration: 450, ease: "circ.in" },
1853
+ { prop: "rotate", from: 0, to: -420, duration: 650, ease: "back.in", jitterDelay: 280 },
1854
+ { prop: "scaleX", from: 1, to: 1.5, duration: 550, ease: "expo.in", transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
1855
+ { prop: "scale", from: 1, to: 0.65, duration: 500, ease: "sine.in", jitterDelay: 170, transformOrigin: { x: 1, y: 0 } },
1856
+ { prop: "rotateX", from: 0, to: { min: -1328.366, max: 1328.366 }, duration: 450, ease: "sine.in", transformOrigin: { x: 0.5, y: 0.5 } },
1857
+ ],
1858
+ };
1859
+ export const collapseBurst = {
1860
+ name: "exit/collapse-burst",
1861
+ split: "word",
1862
+ stagger: 30,
1863
+ staggerOrder: "random",
1864
+ animations: [
1865
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "sine.in" },
1866
+ { prop: "translateX", from: 0, to: { min: -470.244, max: 470.244 }, duration: 600, ease: "expo.in", jitterDelay: 190 },
1867
+ { prop: "scale", from: 1, to: { min: 0.06, max: 0.75 }, duration: 500, ease: "circ.in", jitterDelay: 310 },
1868
+ { prop: "translateY", from: 0, to: -130, duration: 600, ease: "back.in" },
1869
+ ],
1870
+ };
1871
+ export const compressYBurstCurl = {
1872
+ name: "exit/compress-y-burst-curl",
1873
+ split: "character",
1874
+ stagger: 45,
1875
+ perspective: 500,
1876
+ animations: [
1877
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "power2.in" },
1878
+ { prop: "skewX", from: 0, to: -20, duration: 450, ease: "expo.in", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
1879
+ { prop: "translateX", from: 0, to: { min: -498.7, max: 498.7 }, duration: 700, ease: "expo.in" },
1880
+ { prop: "scaleY", from: 1, to: { min: 0, max: 0 }, duration: 600, ease: "sine.in", transformOrigin: { x: 1, y: 0.5, z: 100 } },
1881
+ { prop: "translateZ", from: 0, to: -450, duration: 450, ease: "power2.in", jitterDelay: 270, perspective: 450 },
1882
+ ],
1883
+ };
1884
+ export const twirlOutBurstLoose = {
1885
+ name: "exit/twirl-out-burst-loose",
1886
+ split: "character",
1887
+ stagger: 55,
1888
+ staggerOrder: "end",
1889
+ perspective: 450,
1890
+ animations: [
1891
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "expo.in" },
1892
+ { prop: "scaleY", from: 1, to: { min: 0.5, max: 6.25 }, duration: 600, ease: "back.in", transformOrigin: { x: 0.5, y: 0 } },
1893
+ { prop: "rotate", from: 0, to: 420, duration: 450, ease: "circ.in" },
1894
+ { prop: "translateZ", from: 0, to: -600, duration: 650, ease: "sine.in" },
1895
+ { prop: "skewX", from: 0, to: 40, duration: 450, ease: "back.in" },
1896
+ { prop: "translateX", from: 0, to: 110, duration: 500, ease: "expo.in", jitterDelay: 320 },
1897
+ ],
1898
+ };
1899
+ export const flattenYCurl = {
1900
+ name: "exit/flatten-y-curl",
1901
+ split: "character",
1902
+ stagger: 55,
1903
+ animations: [
1904
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "back.in" },
1905
+ { prop: "scaleY", from: 1, to: -1, duration: 400, ease: "sine.in", jitterDelay: 280, transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
1906
+ { prop: "translateX", from: 0, to: -110, duration: 450, ease: "back.in" },
1907
+ ],
1908
+ };
1909
+ export const tipOutBurstInward = {
1910
+ name: "exit/tip-out-burst-inward",
1911
+ split: "character",
1912
+ stagger: 60,
1913
+ staggerOrder: "edges",
1914
+ perspective: 550,
1915
+ animations: [
1916
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "back.in" },
1917
+ { prop: "translateY", from: 0, to: 90, duration: 400, ease: "back.in" },
1918
+ { prop: "blur", from: 0, to: 19, duration: 400, ease: "back.in" },
1919
+ { prop: "rotate", from: 0, to: { min: -1208.194, max: 1208.194 }, duration: 650, ease: "sine.in", jitterDelay: 100 },
1920
+ { prop: "scale", from: 1, to: { min: 0.15, max: 1.875 }, duration: 600, ease: "power2.in" },
1921
+ { prop: "translateZ", from: 0, to: -200, duration: 450, ease: "sine.in", jitterDelay: 170 },
1922
+ ],
1923
+ };
1924
+ export const flattenXBurstDeep = {
1925
+ name: "exit/flatten-x-burst-deep",
1926
+ split: "character",
1927
+ stagger: 50,
1928
+ staggerOrder: "random",
1929
+ perspective: 500,
1930
+ animations: [
1931
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "power2.in" },
1932
+ { prop: "blur", from: 0, to: { min: 3.8, max: 47.5 }, duration: 600, ease: "expo.in" },
1933
+ { prop: "translateZ", from: 0, to: -600, duration: 700, ease: "back.in", jitterDelay: 100, perspective: 200 },
1934
+ { prop: "scaleX", from: 1, to: 0.2, duration: 650, ease: "sine.in", transformOrigin: { x: 0, y: 0 } },
1935
+ ],
1936
+ };
1937
+ export const swivelOutBurstSnap = {
1938
+ name: "exit/swivel-out-burst-snap",
1939
+ split: "character",
1940
+ stagger: 40,
1941
+ perspective: 200,
1942
+ transformOrigin: { x: 0.5, y: 0.5 },
1943
+ animations: [
1944
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "power2.in" },
1945
+ { prop: "scaleY", from: 1, to: { min: 0.8, max: 10 }, duration: 700, ease: "expo.in", jitterDelay: 120, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
1946
+ { prop: "translateZ", from: 0, to: -450, duration: 600, ease: "sine.in", jitterDelay: 200, perspective: 100 },
1947
+ { prop: "skewX", from: 0, to: { min: -303.217, max: 303.217 }, duration: 500, ease: "power2.in", jitterDelay: 210, transformOrigin: { x: 1, y: 1, z: 100 } },
1948
+ { prop: "scale", from: 1, to: { min: 0.15, max: 1.875 }, duration: 500, ease: "power2.in", jitterDelay: 410, transformOrigin: { x: 1, y: 0.5, z: 100 } },
1949
+ { prop: "translateX", from: 0, to: -290, duration: 500, ease: "sine.in", jitterDelay: 410 },
1950
+ { prop: "rotate", from: 0, to: { min: -4120.645, max: 4120.645 }, duration: 650, ease: "back.in", jitterDelay: 280 },
1951
+ { prop: "rotateY", from: 0, to: { min: -4286.904, max: 4286.904 }, duration: 650, ease: "expo.in", jitterDelay: 400, transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
1952
+ ],
1953
+ };
1954
+ export const tiltOutBurstDeep = {
1955
+ name: "exit/tilt-out-burst-deep",
1956
+ split: "character",
1957
+ stagger: 45,
1958
+ perspective: 250,
1959
+ animations: [
1960
+ { prop: "opacity", from: 1, to: 0, duration: 350, ease: "back.in" },
1961
+ { prop: "rotate", from: 0, to: { min: -1677.161, max: 1677.161 }, duration: 550, ease: "power2.in", jitterDelay: 380, transformOrigin: { x: 1, y: 0.5, z: 100 } },
1962
+ { prop: "skewX", from: 0, to: { min: -285.686, max: 285.686 }, duration: 350, ease: "power2.in", jitterDelay: 180 },
1963
+ { prop: "scaleY", from: 1, to: { min: 0, max: -2.5 }, duration: 600, ease: "expo.in", jitterDelay: 480 },
1964
+ { prop: "translateZ", from: 0, to: -850, duration: 600, ease: "back.in", jitterDelay: 330, perspective: 100 },
1965
+ { prop: "blur", from: 0, to: { min: 5.2, max: 65 }, duration: 550, ease: "expo.in", jitterDelay: 300 },
1966
+ ],
1967
+ };
1968
+ export const swipeOutSnap = {
1969
+ name: "exit/swipe-out-snap",
1970
+ split: "character",
1971
+ stagger: 45,
1972
+ staggerOrder: "end",
1973
+ animations: [
1974
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "sine.in" },
1975
+ { prop: "translateX", from: 0, to: 30, duration: 450, ease: "expo.in" },
1976
+ ],
1977
+ };
1978
+ export const turnOutBurstTrail = {
1979
+ name: "exit/turn-out-burst-trail",
1980
+ split: "character",
1981
+ stagger: 60,
1982
+ staggerOrder: "end",
1983
+ perspective: 350,
1984
+ transformOrigin: { x: 0.5, y: 0.5 },
1985
+ animations: [
1986
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "expo.in" },
1987
+ { prop: "rotateY", from: 0, to: { min: -1766.601, max: 1766.601 }, duration: 600, ease: "sine.in" },
1988
+ { prop: "scale", from: 1, to: 0.65, duration: 650, ease: "sine.in", jitterDelay: 100, transformOrigin: { x: 0.5, y: 0.5 } },
1989
+ { prop: "scaleY", from: 1, to: { min: 0.5, max: 6.25 }, duration: 650, ease: "expo.in", jitterDelay: 240 },
1990
+ { prop: "translateZ", from: 0, to: -500, duration: 500, ease: "expo.in", jitterDelay: 110 },
1991
+ { prop: "translateY", from: 0, to: 210, duration: 500, ease: "power2.in" },
1992
+ { prop: "translateX", from: 0, to: -220, duration: 600, ease: "power2.in" },
1993
+ ],
1994
+ };
1995
+ export const toppleOutBurst2 = {
1996
+ name: "exit/topple-out-burst-2",
1997
+ split: "character",
1998
+ stagger: 55,
1999
+ perspective: 250,
2000
+ transformOrigin: { x: 0.5, y: 0.5 },
2001
+ animations: [
2002
+ { prop: "opacity", from: 1, to: 0, duration: 400, ease: "sine.in" },
2003
+ { prop: "scaleY", from: 1, to: { min: 0.3, max: 3.75 }, duration: 450, ease: "expo.in", jitterDelay: 80 },
2004
+ { prop: "rotateX", from: 0, to: { min: -1574.842, max: 1574.842 }, duration: 450, ease: "sine.in" },
2005
+ { prop: "translateY", from: 0, to: 180, duration: 550, ease: "power2.in", jitterDelay: 270 },
2006
+ { prop: "translateZ", from: 0, to: -400, duration: 450, ease: "power2.in", jitterDelay: 200, perspective: 600 },
2007
+ { prop: "rotateY", from: 0, to: -510, duration: 450, ease: "expo.in", perspective: 450 },
2008
+ ],
2009
+ };
2010
+ export const flattenXCurl = {
2011
+ name: "exit/flatten-x-curl",
2012
+ split: "character",
2013
+ stagger: 55,
2014
+ staggerOrder: "center",
2015
+ perspective: 300,
2016
+ animations: [
2017
+ { prop: "opacity", from: 1, to: 0, duration: 450, ease: "back.in" },
2018
+ { prop: "skewX", from: 0, to: 40, duration: 550, ease: "circ.in", transformOrigin: { x: 0.5, y: 0.5, z: 80 } },
2019
+ { prop: "translateZ", from: 0, to: -450, duration: 550, ease: "back.in", perspective: 200 },
2020
+ { prop: "scaleX", from: 1, to: 2.5, duration: 600, ease: "back.in", jitterDelay: 280, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
2021
+ { prop: "translateX", from: 0, to: 140, duration: 600, ease: "back.in" },
2022
+ ],
2023
+ };
2024
+ export const tiltOutBurstKick = {
2025
+ name: "exit/tilt-out-burst-kick",
2026
+ split: "character",
2027
+ stagger: 60,
2028
+ staggerOrder: "end",
2029
+ animations: [
2030
+ { prop: "opacity", from: 1, to: 0, duration: 300, ease: "expo.in" },
2031
+ { prop: "blur", from: 0, to: { min: 2, max: 25 }, duration: 550, ease: "expo.in" },
2032
+ { prop: "scale", from: 1, to: 0.5, duration: 600, ease: "circ.in", jitterDelay: 50 },
2033
+ { prop: "rotate", from: 0, to: { min: -1954.387, max: 1954.387 }, duration: 600, ease: "back.in", transformOrigin: { x: 1, y: 1 } },
2034
+ { prop: "scaleY", from: 1, to: { min: 0.02, max: 0.25 }, duration: 450, ease: "sine.in" },
2035
+ ],
2036
+ };
2037
+ export const wiggleOutward = {
2038
+ name: "emphasis/wiggle-outward",
2039
+ split: "character",
2040
+ stagger: 30,
2041
+ staggerOrder: "center",
2042
+ animations: [
2043
+ { prop: "translateX", from: 0, to: -2.5, duration: 175, ease: "cubic.out" },
2044
+ { prop: "translateX", from: -2.5, to: 0, duration: 225, delay: 175, ease: "cubic.out" },
2045
+ ],
2046
+ };
2047
+ export const leanLoose = {
2048
+ name: "emphasis/lean-loose",
2049
+ split: "character",
2050
+ stagger: 55,
2051
+ animations: [
2052
+ { prop: "rotate", from: 0, to: 15, duration: 175, ease: "cubic.out", jitterDelay: 130 },
2053
+ { prop: "rotate", from: 15, to: 0, duration: 225, delay: 175, ease: "cubic.out", jitterDelay: 180 },
2054
+ ],
2055
+ };
2056
+ export const pinwheelCurl = {
2057
+ name: "emphasis/pinwheel-curl",
2058
+ split: "word",
2059
+ stagger: 30,
2060
+ staggerOrder: "end",
2061
+ animations: [
2062
+ { prop: "rotate", from: 0, to: 360, duration: 800, ease: "sine.inOut", transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
2063
+ ],
2064
+ };
2065
+ export const bob = {
2066
+ name: "emphasis/bob",
2067
+ split: "character",
2068
+ stagger: 50,
2069
+ animations: [
2070
+ { prop: "translateY", from: 0, to: -8, duration: 175, ease: "cubic.out" },
2071
+ { prop: "translateY", from: -8, to: 0, duration: 350, delay: 175, ease: "cubic.out" },
2072
+ ],
2073
+ };
2074
+ export const whirlLoose = {
2075
+ name: "emphasis/whirl-loose",
2076
+ split: "character",
2077
+ stagger: 20,
2078
+ animations: [
2079
+ { prop: "rotate", from: 0, to: 360, duration: 800, ease: "sine.inOut", jitterDelay: 250, transformOrigin: { x: 1, y: 0 } },
2080
+ ],
2081
+ };
2082
+ export const whirlLoose2 = {
2083
+ name: "emphasis/whirl-loose-2",
2084
+ split: "character",
2085
+ stagger: 45,
2086
+ animations: [
2087
+ { prop: "rotate", from: 0, to: 360, duration: 800, ease: "cubic.out", jitterDelay: 310, transformOrigin: { x: 1, y: 0 } },
2088
+ ],
2089
+ };
2090
+ export const foldTapCurl = {
2091
+ name: "emphasis/fold-tap-curl",
2092
+ split: "word",
2093
+ stagger: 60,
2094
+ perspective: 700,
2095
+ transformOrigin: { x: 0.5, y: 0.5 },
2096
+ animations: [
2097
+ { prop: "rotateX", from: 0, to: 25, duration: 175, ease: "cubic.out", transformOrigin: { x: 0.5, y: 0.5, z: -80 }, perspective: 550 },
2098
+ { prop: "rotateX", from: 25, to: 0, duration: 225, delay: 175, ease: "cubic.out", perspective: 400 },
2099
+ ],
2100
+ };
2101
+ export const turnDeep = {
2102
+ name: "emphasis/turn-deep",
2103
+ split: "character",
2104
+ stagger: 15,
2105
+ perspective: 650,
2106
+ transformOrigin: { x: 0.5, y: 0.5 },
2107
+ animations: [
2108
+ { prop: "rotateY", from: 0, to: 360, duration: 650, ease: "sine.inOut", transformOrigin: { x: 0, y: 0.5 }, perspective: 250 },
2109
+ ],
2110
+ };
2111
+ export const tipCurl = {
2112
+ name: "emphasis/tip-curl",
2113
+ split: "character",
2114
+ stagger: 35,
2115
+ staggerOrder: "end",
2116
+ perspective: 700,
2117
+ transformOrigin: { x: 0.5, y: 0.5 },
2118
+ animations: [
2119
+ { prop: "rotateX", from: 0, to: 25, duration: 200, ease: "sine.inOut", transformOrigin: { x: 0.5, y: 0.5, z: 150 }, perspective: 300 },
2120
+ { prop: "rotateX", from: 25, to: 0, duration: 350, delay: 200, ease: "sine.inOut" },
2121
+ ],
2122
+ };
2123
+ export const swivelCurl = {
2124
+ name: "emphasis/swivel-curl",
2125
+ split: "character",
2126
+ stagger: 50,
2127
+ staggerOrder: "end",
2128
+ perspective: 550,
2129
+ transformOrigin: { x: 0.5, y: 0.5 },
2130
+ animations: [
2131
+ { prop: "rotateY", from: 0, to: 360, duration: 600, ease: "sine.inOut", transformOrigin: { x: 0, y: 0.5, z: -100 }, perspective: 350 },
2132
+ ],
2133
+ };
2134
+ export const pumpTrail = {
2135
+ name: "emphasis/pump-trail",
2136
+ split: "character",
2137
+ stagger: 25,
2138
+ staggerOrder: "end",
2139
+ animations: [
2140
+ { prop: "scale", from: 1, to: 0.82, duration: 200, ease: "sine.inOut" },
2141
+ { prop: "scale", from: 0.82, to: 1, duration: 225, delay: 200, ease: "sine.inOut" },
2142
+ ],
2143
+ };
2144
+ export const twirlCurl = {
2145
+ name: "emphasis/twirl-curl",
2146
+ split: "character",
2147
+ stagger: 50,
2148
+ staggerOrder: "random",
2149
+ animations: [
2150
+ { prop: "rotate", from: 0, to: 360, duration: 550, ease: "sine.inOut", jitterDelay: 170, transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
2151
+ ],
2152
+ };
2153
+ export const joltYTrail = {
2154
+ name: "emphasis/jolt-y-trail",
2155
+ split: "character",
2156
+ stagger: 15,
2157
+ staggerOrder: "end",
2158
+ animations: [
2159
+ { prop: "translateY", from: 0, to: 14, duration: 200, ease: "sine.inOut" },
2160
+ { prop: "translateY", from: 14, to: 0, duration: 325, delay: 200, ease: "sine.inOut" },
2161
+ ],
2162
+ };
2163
+ export const swayCurl = {
2164
+ name: "emphasis/sway-curl",
2165
+ split: "character",
2166
+ stagger: 50,
2167
+ animations: [
2168
+ { prop: "rotate", from: 0, to: 26.25, duration: 175, ease: "cubic.out", jitterDelay: 200, transformOrigin: { x: 0.5, y: 0, z: -100 } },
2169
+ { prop: "rotate", from: 26.25, to: 0, duration: 325, delay: 175, ease: "cubic.out", jitterDelay: 110 },
2170
+ ],
2171
+ };
2172
+ export const twirlCurlInward = {
2173
+ name: "emphasis/twirl-curl-inward",
2174
+ split: "character",
2175
+ stagger: 30,
2176
+ staggerOrder: "edges",
2177
+ animations: [
2178
+ { prop: "rotate", from: 0, to: 360, duration: 750, ease: "cubic.out", transformOrigin: { x: 0, y: 0, z: -100 } },
2179
+ ],
2180
+ };
2181
+ export const carouselInward = {
2182
+ name: "emphasis/carousel-inward",
2183
+ split: "character",
2184
+ stagger: 20,
2185
+ staggerOrder: "edges",
2186
+ animations: [
2187
+ { prop: "rotate", from: 0, to: 360, duration: 650, ease: "cubic.out", transformOrigin: { x: 1, y: 1 } },
2188
+ ],
2189
+ };
2190
+ export const joltYTrail2 = {
2191
+ name: "emphasis/jolt-y-trail-2",
2192
+ split: "character",
2193
+ stagger: 55,
2194
+ staggerOrder: "end",
2195
+ animations: [
2196
+ { prop: "translateY", from: 0, to: -8, duration: 200, ease: "sine.inOut" },
2197
+ { prop: "translateY", from: -8, to: 0, duration: 225, delay: 200, ease: "sine.inOut" },
2198
+ ],
2199
+ };
2200
+ export const tipDeep = {
2201
+ name: "emphasis/tip-deep",
2202
+ split: "character",
2203
+ stagger: 40,
2204
+ staggerOrder: "edges",
2205
+ perspective: 650,
2206
+ transformOrigin: { x: 0.5, y: 0.5 },
2207
+ animations: [
2208
+ { prop: "rotateX", from: 0, to: -25, duration: 200, ease: "sine.inOut", transformOrigin: { x: 1, y: 1 } },
2209
+ { prop: "rotateX", from: -25, to: 0, duration: 225, delay: 200, ease: "sine.inOut", perspective: 450 },
2210
+ ],
2211
+ };
2212
+ export const tapXLoose = {
2213
+ name: "emphasis/tap-x-loose",
2214
+ split: "character",
2215
+ stagger: 30,
2216
+ staggerOrder: "center",
2217
+ animations: [
2218
+ { prop: "translateX", from: 0, to: 8, duration: 275, ease: "sine.inOut" },
2219
+ { prop: "translateX", from: 8, to: 0, duration: 225, delay: 275, ease: "sine.inOut", jitterDelay: 100 },
2220
+ ],
2221
+ };
2222
+ export const rockInward = {
2223
+ name: "emphasis/rock-inward",
2224
+ split: "word",
2225
+ stagger: 25,
2226
+ staggerOrder: "edges",
2227
+ animations: [
2228
+ { prop: "rotate", from: 0, to: -15, duration: 175, ease: "cubic.out" },
2229
+ { prop: "rotate", from: -15, to: 0, duration: 250, delay: 175, ease: "cubic.out" },
2230
+ ],
2231
+ };
2232
+ export const tumbleScatterTunnelWord = {
2233
+ name: "enter/tumble-scatter-tunnel-word",
2234
+ split: "word",
2235
+ stagger: 50,
2236
+ staggerOrder: "end",
2237
+ perspective: 250,
2238
+ transformOrigin: { x: 0.5, y: 1 },
2239
+ animations: [
2240
+ { prop: "opacity", from: 0, to: 1, duration: 450 },
2241
+ { prop: "rotateX", from: -450, to: 0, duration: 650, jitterDelay: 150, transformOrigin: { x: 0.5, y: 0.5 } },
2242
+ { prop: "skewX", from: { min: -130.479, max: 130.479 }, to: 0, duration: 650, jitterDelay: 290 },
2243
+ { prop: "blur", from: 17, to: 0, duration: 450 },
2244
+ ],
2245
+ };
2246
+ export const twirlScatter2 = {
2247
+ name: "enter/twirl-scatter-2",
2248
+ split: "character",
2249
+ stagger: 20,
2250
+ perspective: 600,
2251
+ transformOrigin: { x: 0.5, y: 1 },
2252
+ animations: [
2253
+ { prop: "opacity", from: 0, to: 1, duration: 500 },
2254
+ { prop: "scale", from: 0.4, to: 1, duration: 650, transformOrigin: { x: 0, y: 0.5 } },
2255
+ { prop: "scaleY", from: { min: 0.04, max: 0.5 }, to: 1, duration: 900, jitterDelay: 90 },
2256
+ { prop: "rotate", from: -720, to: 0, duration: 750, jitterDelay: 90 },
2257
+ { prop: "rotateX", from: { min: -702.872, max: 702.872 }, to: 0, duration: 800, perspective: 500 },
2258
+ ],
2259
+ };
2260
+ export const pivotScatter2 = {
2261
+ name: "enter/pivot-scatter-2",
2262
+ split: "character",
2263
+ stagger: 40,
2264
+ perspective: 550,
2265
+ animations: [
2266
+ { prop: "opacity", from: 0, to: 1, duration: 350 },
2267
+ { prop: "translateZ", from: -350, to: 0, duration: 500, jitterDelay: 240, perspective: 600 },
2268
+ { prop: "rotate", from: -330, to: 0, duration: 550, transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
2269
+ { prop: "scaleX", from: { min: 0.5, max: 6.25 }, to: 1, duration: 650, jitterDelay: 200 },
2270
+ { prop: "blur", from: 7, to: 0, duration: 550 },
2271
+ { prop: "translateY", from: 160, to: 0, duration: 750 },
2272
+ ],
2273
+ };
2274
+ export const tumbleScatter = {
2275
+ name: "enter/tumble-scatter",
2276
+ split: "character",
2277
+ stagger: 50,
2278
+ staggerOrder: "end",
2279
+ perspective: 600,
2280
+ transformOrigin: { x: 0.5, y: 1 },
2281
+ animations: [
2282
+ { prop: "opacity", from: 0, to: 1, duration: 350 },
2283
+ { prop: "scaleY", from: 0.2, to: 1, duration: 650, jitterDelay: 180, transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
2284
+ { prop: "scale", from: 0.5, to: 1, duration: 850, jitterDelay: 210 },
2285
+ { prop: "translateY", from: 140, to: 0, duration: 650 },
2286
+ { prop: "rotateX", from: { min: -1048.298, max: 1048.298 }, to: 0, duration: 850, transformOrigin: { x: 0.5, y: 0 }, perspective: 200 },
2287
+ { prop: "blur", from: 15, to: 0, duration: 650, jitterDelay: 180 },
2288
+ ],
2289
+ };
2290
+ export const whirlScatter2 = {
2291
+ name: "enter/whirl-scatter-2",
2292
+ split: "character",
2293
+ stagger: 15,
2294
+ perspective: 650,
2295
+ animations: [
2296
+ { prop: "opacity", from: 0, to: 1, duration: 350 },
2297
+ { prop: "translateZ", from: -400, to: 0, duration: 850 },
2298
+ { prop: "rotate", from: { min: -2796.689, max: 2796.689 }, to: 0, duration: 800, transformOrigin: { x: 0.5, y: 1 } },
2299
+ ],
2300
+ };
2301
+ export const whirlScatter3 = {
2302
+ name: "enter/whirl-scatter-3",
2303
+ split: "character",
2304
+ stagger: 60,
2305
+ staggerOrder: "center",
2306
+ perspective: 550,
2307
+ transformOrigin: { x: 0.5, y: 0.5 },
2308
+ animations: [
2309
+ { prop: "opacity", from: 0, to: 1, duration: 600 },
2310
+ { prop: "rotateY", from: 510, to: 0, duration: 800, transformOrigin: { x: 0.5, y: 0.5, z: -80 }, perspective: 250 },
2311
+ { prop: "blur", from: { min: 4, max: 50 }, to: 0, duration: 600 },
2312
+ { prop: "rotate", from: { min: -2112.647, max: 2112.647 }, to: 0, duration: 900 },
2313
+ ],
2314
+ };
2315
+ export const spinScatter = {
2316
+ name: "enter/spin-scatter",
2317
+ split: "character",
2318
+ stagger: 40,
2319
+ perspective: 650,
2320
+ transformOrigin: { x: 0.5, y: 0.5 },
2321
+ animations: [
2322
+ { prop: "opacity", from: 0, to: 1, duration: 550 },
2323
+ { prop: "scaleY", from: { min: 0.04, max: 0.5 }, to: 1, duration: 750, jitterDelay: 260, transformOrigin: { x: 1, y: 0.5, z: 100 } },
2324
+ { prop: "rotateY", from: { min: -1256.514, max: 1256.514 }, to: 0, duration: 850, transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
2325
+ { prop: "translateY", from: 220, to: 0, duration: 800 },
2326
+ ],
2327
+ };
2328
+ export const whirlScatter4 = {
2329
+ name: "enter/whirl-scatter-4",
2330
+ split: "character",
2331
+ stagger: 35,
2332
+ perspective: 600,
2333
+ transformOrigin: { x: 0.5, y: 0.5 },
2334
+ animations: [
2335
+ { prop: "opacity", from: 0, to: 1, duration: 450 },
2336
+ { prop: "rotateY", from: 480, to: 0, duration: 650, jitterDelay: 150, perspective: 500 },
2337
+ { prop: "rotate", from: { min: -3302.464, max: 3302.464 }, to: 0, duration: 650, jitterDelay: 90 },
2338
+ { prop: "blur", from: { min: 3.4, max: 42.5 }, to: 0, duration: 700 },
2339
+ ],
2340
+ };
2341
+ export const hazeScatter = {
2342
+ name: "enter/haze-scatter",
2343
+ split: "character",
2344
+ stagger: 20,
2345
+ perspective: 550,
2346
+ transformOrigin: { x: 0.5, y: 0.5 },
2347
+ animations: [
2348
+ { prop: "opacity", from: 0, to: 1, duration: 350 },
2349
+ { prop: "rotateY", from: 210, to: 0, duration: 750, transformOrigin: { x: 0.5, y: 0.5 } },
2350
+ { prop: "blur", from: { min: 2.4, max: 30 }, to: 0, duration: 700 },
2351
+ { prop: "scaleY", from: 2.5, to: 1, duration: 850 },
2352
+ ],
2353
+ };
2354
+ export const twirlScatter3 = {
2355
+ name: "enter/twirl-scatter-3",
2356
+ split: "character",
2357
+ stagger: 60,
2358
+ perspective: 450,
2359
+ transformOrigin: { x: 0.5, y: 0.5 },
2360
+ animations: [
2361
+ { prop: "opacity", from: 0, to: 1, duration: 550 },
2362
+ { prop: "rotateY", from: 240, to: 0, duration: 750, jitterDelay: 330, perspective: 600 },
2363
+ { prop: "rotate", from: 480, to: 0, duration: 600 },
2364
+ { prop: "scale", from: 0.45, to: 1, duration: 800 },
2365
+ { prop: "blur", from: { min: 3, max: 37.5 }, to: 0, duration: 700 },
2366
+ { prop: "skewX", from: 35, to: 0, duration: 450, transformOrigin: { x: 0.5, y: 1 } },
2367
+ ],
2368
+ };
2369
+ export const twirlScatter4 = {
2370
+ name: "enter/twirl-scatter-4",
2371
+ split: "character",
2372
+ stagger: 55,
2373
+ staggerOrder: "edges",
2374
+ animations: [
2375
+ { prop: "opacity", from: 0, to: 1, duration: 350 },
2376
+ { prop: "rotate", from: 690, to: 0, duration: 700 },
2377
+ { prop: "translateY", from: { min: -394.808, max: 394.808 }, to: 0, duration: 550, jitterDelay: 150 },
2378
+ { prop: "blur", from: { min: 1.4, max: 17.5 }, to: 0, duration: 400, jitterDelay: 130 },
2379
+ ],
2380
+ };
2381
+ export const whirlScatter5 = {
2382
+ name: "enter/whirl-scatter-5",
2383
+ split: "character",
2384
+ stagger: 35,
2385
+ staggerOrder: "end",
2386
+ perspective: 650,
2387
+ transformOrigin: { x: 0.5, y: 0.5 },
2388
+ animations: [
2389
+ { prop: "opacity", from: 0, to: 1, duration: 500 },
2390
+ { prop: "rotateY", from: { min: -1327.958, max: 1327.958 }, to: 0, duration: 550, transformOrigin: { x: 1, y: 0.5 } },
2391
+ { prop: "scaleY", from: { min: 0.6, max: 7.5 }, to: 1, duration: 850, jitterDelay: 70, transformOrigin: { x: 0, y: 0.5, z: -100 } },
2392
+ { prop: "blur", from: { min: 2.2, max: 27.5 }, to: 0, duration: 700, jitterDelay: 250 },
2393
+ { prop: "rotate", from: { min: -1942.975, max: 1942.975 }, to: 0, duration: 550 },
2394
+ ],
2395
+ };
2396
+ export const tumbleScatter2 = {
2397
+ name: "enter/tumble-scatter-2",
2398
+ split: "character",
2399
+ stagger: 50,
2400
+ perspective: 400,
2401
+ transformOrigin: { x: 0.5, y: 1 },
2402
+ animations: [
2403
+ { prop: "opacity", from: 0, to: 1, duration: 350 },
2404
+ { prop: "blur", from: 11, to: 0, duration: 750 },
2405
+ { prop: "scale", from: { min: 0.15, max: 1.875 }, to: 1, duration: 800, jitterDelay: 180, transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
2406
+ { prop: "translateZ", from: -400, to: 0, duration: 650, jitterDelay: 90 },
2407
+ { prop: "rotateX", from: -540, to: 0, duration: 650, perspective: 300 },
2408
+ ],
2409
+ };
2410
+ export const compressYScatter = {
2411
+ name: "enter/compress-y-scatter",
2412
+ split: "character",
2413
+ stagger: 60,
2414
+ animations: [
2415
+ { prop: "opacity", from: 0, to: 1, duration: 550 },
2416
+ { prop: "scaleY", from: { min: 0.28, max: 3.5 }, to: 1, duration: 900 },
2417
+ ],
2418
+ };
2419
+ export const toppleSnapLooseWord = {
2420
+ name: "enter/topple-snap-loose-word",
2421
+ split: "word",
2422
+ stagger: 45,
2423
+ staggerOrder: "end",
2424
+ perspective: 450,
2425
+ transformOrigin: { x: 0.5, y: 1 },
2426
+ animations: [
2427
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "anticipate.out" },
2428
+ { prop: "scale", from: 0.3, to: 1, duration: 800, ease: "back.out", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
2429
+ { prop: "skewX", from: 45, to: 0, duration: 650, ease: "power3.out" },
2430
+ { prop: "rotateX", from: 300, to: 0, duration: 700, ease: "back.out" },
2431
+ { prop: "blur", from: 15, to: 0, duration: 700, ease: "sine.out", jitterDelay: 200 },
2432
+ { prop: "translateZ", from: -450, to: 0, duration: 800, ease: "expo.out", jitterDelay: 320, perspective: 250 },
2433
+ ],
2434
+ };
2435
+ export const dropScatterBounceWord = {
2436
+ name: "enter/drop-scatter-bounce-word",
2437
+ split: "word",
2438
+ stagger: 45,
2439
+ animations: [
2440
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "anticipate.out" },
2441
+ { prop: "skewX", from: 25, to: 0, duration: 700, ease: "bounce.out", transformOrigin: { x: 1, y: 0.5, z: 100 } },
2442
+ { prop: "blur", from: { min: 2, max: 25 }, to: 0, duration: 800, ease: "expo.out", jitterDelay: 290 },
2443
+ { prop: "scaleY", from: 0.1, to: 1, duration: 850, ease: "power4.out", jitterDelay: 240 },
2444
+ { prop: "translateY", from: { min: -990.632, max: 990.632 }, to: 0, duration: 600, ease: "elastic.out", jitterDelay: 90 },
2445
+ ],
2446
+ };
2447
+ export const slantScatterBounce = {
2448
+ name: "enter/slant-scatter-bounce",
2449
+ split: "character",
2450
+ stagger: 15,
2451
+ perspective: 500,
2452
+ transformOrigin: { x: 0.5, y: 1 },
2453
+ animations: [
2454
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "power3.out" },
2455
+ { prop: "translateX", from: 190, to: 0, duration: 900, ease: "sine.out" },
2456
+ { prop: "blur", from: 8, to: 0, duration: 750, ease: "back.out", jitterDelay: 60 },
2457
+ { prop: "skewX", from: { min: -168.273, max: 168.273 }, to: 0, duration: 400, ease: "expo.out", transformOrigin: { x: 1, y: 1 } },
2458
+ { prop: "scaleY", from: { min: 0, max: 0 }, to: 1, duration: 850, ease: "bounce.out", jitterDelay: 250 },
2459
+ { prop: "rotateX", from: -270, to: 0, duration: 750, ease: "power4.out", perspective: 250 },
2460
+ { prop: "scaleX", from: 2, to: 1, duration: 900, ease: "anticipate.out", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
2461
+ ],
2462
+ };
2463
+ export const slantScatterSpringWord = {
2464
+ name: "enter/slant-scatter-spring-word",
2465
+ split: "word",
2466
+ stagger: 15,
2467
+ staggerOrder: "end",
2468
+ perspective: 700,
2469
+ animations: [
2470
+ { prop: "opacity", from: 0, to: 1, duration: 550, ease: "expo.out" },
2471
+ { prop: "scaleX", from: { min: 0.4, max: 5 }, to: 1, duration: 600, ease: "elastic.out", jitterDelay: 230 },
2472
+ { prop: "translateZ", from: -400, to: 0, duration: 750, ease: "elastic.out", perspective: 500 },
2473
+ { prop: "blur", from: { min: 3.2, max: 40 }, to: 0, duration: 750, ease: "expo.out" },
2474
+ { prop: "skewX", from: { min: -167.292, max: 167.292 }, to: 0, duration: 500, ease: "elastic.out", jitterDelay: 120 },
2475
+ ],
2476
+ };
2477
+ export const whirlScatter6 = {
2478
+ name: "enter/whirl-scatter-6",
2479
+ split: "character",
2480
+ stagger: 15,
2481
+ perspective: 500,
2482
+ transformOrigin: { x: 0.5, y: 0.5 },
2483
+ animations: [
2484
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "anticipate.out" },
2485
+ { prop: "scale", from: 0.65, to: 1, duration: 650, ease: "sine.out", transformOrigin: { x: 0.5, y: 0 } },
2486
+ { prop: "rotate", from: { min: -1460.019, max: 1460.019 }, to: 0, duration: 800, ease: "power3.out", jitterDelay: 250, transformOrigin: { x: 0, y: 0, z: -100 } },
2487
+ { prop: "rotateY", from: -510, to: 0, duration: 800, ease: "circ.out", transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
2488
+ { prop: "scaleX", from: 0.1, to: 1, duration: 700, ease: "expo.out", jitterDelay: 330 },
2489
+ ],
2490
+ };
2491
+ export const hazeScatter2 = {
2492
+ name: "enter/haze-scatter-2",
2493
+ split: "character",
2494
+ stagger: 55,
2495
+ animations: [
2496
+ { prop: "opacity", from: 0, to: 1, duration: 450, ease: "power3.out" },
2497
+ { prop: "blur", from: { min: 1.6, max: 20 }, to: 0, duration: 750, ease: "power3.out" },
2498
+ { prop: "translateX", from: 80, to: 0, duration: 650, ease: "sine.out" },
2499
+ { prop: "scaleX", from: 0.1, to: 1, duration: 850, ease: "circ.out" },
2500
+ { prop: "scaleY", from: 0, to: 1, duration: 900, ease: "anticipate.out" },
2501
+ ],
2502
+ };
2503
+ export const whirlScatterSnap = {
2504
+ name: "enter/whirl-scatter-snap",
2505
+ split: "character",
2506
+ stagger: 55,
2507
+ animations: [
2508
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "back.out" },
2509
+ { prop: "scaleY", from: 0, to: 1, duration: 550, ease: "power4.out", transformOrigin: { x: 1, y: 0.5, z: 100 } },
2510
+ { prop: "scaleX", from: { min: 0.02, max: 0.25 }, to: 1, duration: 700, ease: "power1.out", jitterDelay: 250 },
2511
+ { prop: "translateX", from: { min: -1177.436, max: 1177.436 }, to: 0, duration: 500, ease: "power3.out", jitterDelay: 220 },
2512
+ { prop: "rotate", from: { min: -3226.015, max: 3226.015 }, to: 0, duration: 700, ease: "power2.out", jitterDelay: 440 },
2513
+ ],
2514
+ };
2515
+ export const whirlScatterSnapTunnel = {
2516
+ name: "enter/whirl-scatter-snap-tunnel",
2517
+ split: "character",
2518
+ stagger: 35,
2519
+ perspective: 150,
2520
+ animations: [
2521
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "power3.out" },
2522
+ { prop: "translateY", from: { min: -1863.057, max: 1863.057 }, to: 0, duration: 600, ease: "back.out" },
2523
+ { prop: "scaleX", from: 0.3, to: 1, duration: 650, ease: "power2.out", jitterDelay: 180, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
2524
+ { prop: "translateZ", from: -600, to: 0, duration: 650, ease: "sine.out", jitterDelay: 410, perspective: 200 },
2525
+ { prop: "translateX", from: 180, to: 0, duration: 900, ease: "expo.out", jitterDelay: 470 },
2526
+ { prop: "rotate", from: { min: -3721.458, max: 3721.458 }, to: 0, duration: 900, ease: "circ.out", jitterDelay: 220, transformOrigin: { x: 0.5, y: 1 } },
2527
+ ],
2528
+ };
2529
+ export const hazeScatter3 = {
2530
+ name: "enter/haze-scatter-3",
2531
+ split: "character",
2532
+ stagger: 60,
2533
+ staggerOrder: "end",
2534
+ animations: [
2535
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "expo.out" },
2536
+ { prop: "blur", from: 9, to: 0, duration: 500, ease: "sine.out", jitterDelay: 340 },
2537
+ { prop: "scale", from: { min: 0.13, max: 1.625 }, to: 1, duration: 750, ease: "expo.out" },
2538
+ { prop: "scaleY", from: 0.1, to: 1, duration: 600, ease: "anticipate.out", transformOrigin: { x: 1, y: 0 } },
2539
+ ],
2540
+ };
2541
+ export const hazeSnap = {
2542
+ name: "enter/haze-snap",
2543
+ split: "character",
2544
+ stagger: 60,
2545
+ staggerOrder: "center",
2546
+ perspective: 500,
2547
+ animations: [
2548
+ { prop: "opacity", from: 0, to: 1, duration: 400, ease: "back.out" },
2549
+ { prop: "blur", from: 17, to: 0, duration: 650, ease: "expo.out" },
2550
+ { prop: "translateZ", from: -300, to: 0, duration: 550, ease: "back.out", jitterDelay: 60 },
2551
+ ],
2552
+ };
2553
+ export const hazeScatterSpring = {
2554
+ name: "enter/haze-scatter-spring",
2555
+ split: "character",
2556
+ stagger: 20,
2557
+ staggerOrder: "end",
2558
+ animations: [
2559
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "power1.out" },
2560
+ { prop: "translateY", from: 140, to: 0, duration: 650, ease: "elastic.out" },
2561
+ { prop: "blur", from: { min: 3.4, max: 42.5 }, to: 0, duration: 550, ease: "expo.out" },
2562
+ ],
2563
+ };
2564
+ export const whirlScatterWord2 = {
2565
+ name: "enter/whirl-scatter-word",
2566
+ split: "word",
2567
+ stagger: 40,
2568
+ animations: [
2569
+ { prop: "opacity", from: 0, to: 1, duration: 350, ease: "power1.out" },
2570
+ { prop: "blur", from: { min: 2.2, max: 27.5 }, to: 0, duration: 500, ease: "power1.out" },
2571
+ { prop: "skewX", from: 30, to: 0, duration: 450, ease: "sine.out" },
2572
+ { prop: "rotate", from: { min: -3431.959, max: 3431.959 }, to: 0, duration: 750, ease: "power2.out", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
2573
+ { prop: "scaleY", from: { min: 0.5, max: 6.25 }, to: 1, duration: 600, ease: "power1.out", transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
2574
+ ],
2575
+ };
2576
+ export const slantScatterWord = {
2577
+ name: "enter/slant-scatter-word",
2578
+ split: "word",
2579
+ stagger: 20,
2580
+ animations: [
2581
+ { prop: "opacity", from: 0, to: 1, duration: 500, ease: "sine.out" },
2582
+ { prop: "scale", from: 0.2, to: 1, duration: 800, ease: "anticipate.out", transformOrigin: { x: 0, y: 0, z: -100 } },
2583
+ { prop: "translateX", from: 180, to: 0, duration: 700, ease: "anticipate.out" },
2584
+ { prop: "skewX", from: { min: -175.197, max: 175.197 }, to: 0, duration: 550, ease: "power1.out", transformOrigin: { x: 1, y: 0.5, z: 100 } },
2585
+ { prop: "blur", from: 8, to: 0, duration: 650, ease: "power1.out" },
2586
+ ],
2587
+ };
2588
+ export const twirlLoose = {
2589
+ name: "exit/twirl-loose",
2590
+ split: "character",
2591
+ stagger: 45,
2592
+ perspective: 550,
2593
+ transformOrigin: { x: 0.5, y: 0.5 },
2594
+ animations: [
2595
+ { prop: "opacity", from: 1, to: 0, duration: 400 },
2596
+ { prop: "rotate", from: 0, to: 480, duration: 450, jitterDelay: 90 },
2597
+ { prop: "scale", from: 1, to: 0.75, duration: 450, jitterDelay: 220 },
2598
+ { prop: "rotateY", from: 0, to: -120, duration: 600, perspective: 300 },
2599
+ ],
2600
+ };
2601
+ export const twirlScatterTunnel = {
2602
+ name: "exit/twirl-scatter-tunnel",
2603
+ split: "character",
2604
+ stagger: 45,
2605
+ perspective: 250,
2606
+ animations: [
2607
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2608
+ { prop: "rotate", from: 0, to: 690, duration: 600 },
2609
+ { prop: "translateZ", from: 0, to: -550, duration: 450, perspective: 600 },
2610
+ { prop: "scale", from: 1, to: { min: 0.07, max: 0.875 }, duration: 650, jitterDelay: 220, transformOrigin: { x: 0.5, y: 1 } },
2611
+ ],
2612
+ };
2613
+ export const whirlScatterTunnel = {
2614
+ name: "exit/whirl-scatter-tunnel",
2615
+ split: "character",
2616
+ stagger: 50,
2617
+ perspective: 300,
2618
+ transformOrigin: { x: 0.5, y: 0.5 },
2619
+ animations: [
2620
+ { prop: "opacity", from: 1, to: 0, duration: 400 },
2621
+ { prop: "rotateY", from: 0, to: { min: -1938.928, max: 1938.928 }, duration: 700, jitterDelay: 310, transformOrigin: { x: 0.3, y: 0.7, z: -120 }, perspective: 100 },
2622
+ { prop: "translateZ", from: 0, to: -800, duration: 450, perspective: 150 },
2623
+ { prop: "rotate", from: 0, to: { min: -3440.352, max: 3440.352 }, duration: 600, jitterDelay: 210 },
2624
+ { prop: "blur", from: 0, to: { min: 2.6, max: 32.5 }, duration: 550, jitterDelay: 340 },
2625
+ { prop: "skewX", from: 0, to: { min: -372.022, max: 372.022 }, duration: 300, jitterDelay: 400 },
2626
+ ],
2627
+ };
2628
+ export const slideScatter2 = {
2629
+ name: "exit/slide-scatter",
2630
+ split: "character",
2631
+ stagger: 45,
2632
+ staggerOrder: "random",
2633
+ animations: [
2634
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2635
+ { prop: "rotate", from: 0, to: 480, duration: 600, jitterDelay: 430, transformOrigin: { x: 0.5, y: 1, z: 100 } },
2636
+ { prop: "skewX", from: 0, to: { min: -256.058, max: 256.058 }, duration: 350, jitterDelay: 450, transformOrigin: { x: 0, y: 0.5, z: -100 } },
2637
+ { prop: "scaleX", from: 1, to: { min: 0.6, max: 7.5 }, duration: 700, jitterDelay: 450 },
2638
+ { prop: "scaleY", from: 1, to: { min: 0.06, max: 0.75 }, duration: 650, transformOrigin: { x: 0.3, y: 0.7, z: -120 } },
2639
+ { prop: "blur", from: 0, to: { min: 4.4, max: 55 }, duration: 500, jitterDelay: 410 },
2640
+ { prop: "translateX", from: 0, to: { min: -1217.019, max: 1217.019 }, duration: 600, jitterDelay: 410 },
2641
+ ],
2642
+ };
2643
+ export const whirlScatterTunnel3 = {
2644
+ name: "exit/whirl-scatter-tunnel-2",
2645
+ split: "character",
2646
+ stagger: 35,
2647
+ staggerOrder: "edges",
2648
+ perspective: 100,
2649
+ animations: [
2650
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2651
+ { prop: "translateZ", from: 0, to: -700, duration: 600, jitterDelay: 460, perspective: 300 },
2652
+ { prop: "rotate", from: 0, to: { min: -7084.676, max: 7084.676 }, duration: 600, transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
2653
+ { prop: "scale", from: 1, to: { min: 0.08, max: 1 }, duration: 550 },
2654
+ { prop: "skewX", from: 0, to: { min: -246.666, max: 246.666 }, duration: 350, jitterDelay: 120, transformOrigin: { x: 1, y: 0.5, z: 100 } },
2655
+ ],
2656
+ };
2657
+ export const pivotScatterTunnel = {
2658
+ name: "exit/pivot-scatter-tunnel",
2659
+ split: "word",
2660
+ stagger: 45,
2661
+ perspective: 300,
2662
+ animations: [
2663
+ { prop: "opacity", from: 1, to: 0, duration: 400 },
2664
+ { prop: "rotate", from: 0, to: 270, duration: 500 },
2665
+ { prop: "scaleX", from: 1, to: { min: 0, max: -2.5 }, duration: 450 },
2666
+ { prop: "translateZ", from: 0, to: -300, duration: 650 },
2667
+ ],
2668
+ };
2669
+ export const fogScatter = {
2670
+ name: "exit/fog-scatter",
2671
+ split: "character",
2672
+ stagger: 45,
2673
+ animations: [
2674
+ { prop: "opacity", from: 1, to: 0, duration: 400 },
2675
+ { prop: "blur", from: 0, to: 17, duration: 350 },
2676
+ { prop: "scaleX", from: 1, to: { min: 0.3, max: 3.75 }, duration: 400, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
2677
+ { prop: "rotate", from: 0, to: 90, duration: 450 },
2678
+ { prop: "translateX", from: 0, to: -130, duration: 550 },
2679
+ ],
2680
+ };
2681
+ export const fogScatter2 = {
2682
+ name: "exit/fog-scatter-2",
2683
+ split: "character",
2684
+ stagger: 20,
2685
+ animations: [
2686
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2687
+ { prop: "translateY", from: 0, to: 150, duration: 550 },
2688
+ { prop: "scaleY", from: 1, to: 2.5, duration: 550, transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
2689
+ { prop: "blur", from: 0, to: { min: 2.6, max: 32.5 }, duration: 450, jitterDelay: 100 },
2690
+ ],
2691
+ };
2692
+ export const riseScatter2 = {
2693
+ name: "exit/rise-scatter",
2694
+ split: "word",
2695
+ stagger: 15,
2696
+ staggerOrder: "end",
2697
+ perspective: 500,
2698
+ transformOrigin: { x: 0.5, y: 0.5 },
2699
+ animations: [
2700
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2701
+ { prop: "translateY", from: 0, to: -160, duration: 650 },
2702
+ { prop: "rotateY", from: 0, to: -120, duration: 550, transformOrigin: { x: 0, y: 0.5, z: -100 } },
2703
+ { prop: "scale", from: 1, to: { min: 0.11, max: 1.375 }, duration: 550 },
2704
+ ],
2705
+ };
2706
+ export const riseScatter3 = {
2707
+ name: "exit/rise-scatter-2",
2708
+ split: "character",
2709
+ stagger: 50,
2710
+ staggerOrder: "end",
2711
+ perspective: 650,
2712
+ transformOrigin: { x: 0.5, y: 1 },
2713
+ animations: [
2714
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2715
+ { prop: "translateY", from: 0, to: { min: -528.301, max: 528.301 }, duration: 550 },
2716
+ { prop: "blur", from: 0, to: { min: 3.6, max: 45 }, duration: 500 },
2717
+ { prop: "scaleX", from: 1, to: { min: 0.04, max: 0.5 }, duration: 600, transformOrigin: { x: 0.7, y: 0.3, z: 120 } },
2718
+ { prop: "scaleY", from: 1, to: 0, duration: 550, transformOrigin: { x: 0.5, y: 0, z: -100 } },
2719
+ { prop: "rotateX", from: 0, to: -450, duration: 550, perspective: 200 },
2720
+ { prop: "translateX", from: 0, to: -210, duration: 600 },
2721
+ ],
2722
+ };
2723
+ export const twirl = {
2724
+ name: "exit/twirl",
2725
+ split: "character",
2726
+ stagger: 45,
2727
+ animations: [
2728
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2729
+ { prop: "rotate", from: 0, to: 720, duration: 450, transformOrigin: { x: 0, y: 0.5, z: -100 } },
2730
+ { prop: "scale", from: 1, to: 0.65, duration: 600 },
2731
+ ],
2732
+ };
2733
+ export const topple2 = {
2734
+ name: "exit/topple",
2735
+ split: "character",
2736
+ stagger: 40,
2737
+ staggerOrder: "end",
2738
+ perspective: 600,
2739
+ transformOrigin: { x: 0.5, y: 1 },
2740
+ animations: [
2741
+ { prop: "opacity", from: 1, to: 0, duration: 300 },
2742
+ { prop: "scale", from: 1, to: 0.55, duration: 600 },
2743
+ { prop: "rotateX", from: 0, to: 180, duration: 500, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
2744
+ ],
2745
+ };
2746
+ export const whirlScatter32 = {
2747
+ name: "exit/whirl-scatter",
2748
+ split: "character",
2749
+ stagger: 45,
2750
+ staggerOrder: "edges",
2751
+ animations: [
2752
+ { prop: "opacity", from: 1, to: 0, duration: 500 },
2753
+ { prop: "scaleX", from: 1, to: { min: 0.6, max: 7.5 }, duration: 550, jitterDelay: 330, transformOrigin: { x: 0, y: 0.5, z: -100 } },
2754
+ { prop: "rotate", from: 0, to: { min: -1871.995, max: 1871.995 }, duration: 550, jitterDelay: 320 },
2755
+ { prop: "translateY", from: 0, to: 180, duration: 450, jitterDelay: 120 },
2756
+ { prop: "blur", from: 0, to: 11, duration: 550 },
2757
+ ],
2758
+ };
2759
+ export const slideLoose = {
2760
+ name: "exit/slide-loose",
2761
+ split: "character",
2762
+ stagger: 55,
2763
+ animations: [
2764
+ { prop: "opacity", from: 1, to: 0, duration: 400 },
2765
+ { prop: "translateY", from: 0, to: 120, duration: 400, jitterDelay: 250 },
2766
+ { prop: "translateX", from: 0, to: -170, duration: 450 },
2767
+ { prop: "scale", from: 1, to: 0.45, duration: 500 },
2768
+ { prop: "scaleX", from: 1, to: 2, duration: 450, jitterDelay: 220, transformOrigin: { x: 0.5, y: 0.5, z: -150 } },
2769
+ ],
2770
+ };
2771
+ export const slideScatter22 = {
2772
+ name: "exit/slide-scatter-2",
2773
+ split: "character",
2774
+ stagger: 45,
2775
+ perspective: 650,
2776
+ animations: [
2777
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2778
+ { prop: "translateY", from: 0, to: { min: -654.094, max: 654.094 }, duration: 650 },
2779
+ { prop: "scale", from: 1, to: { min: 0.13, max: 1.625 }, duration: 400 },
2780
+ { prop: "skewX", from: 0, to: -20, duration: 500, transformOrigin: { x: 0.5, y: 0 } },
2781
+ { prop: "translateZ", from: 0, to: -500, duration: 500, jitterDelay: 230, perspective: 600 },
2782
+ { prop: "translateX", from: 0, to: { min: -839.498, max: 839.498 }, duration: 550 },
2783
+ ],
2784
+ };
2785
+ export const twirl2 = {
2786
+ name: "exit/twirl-2",
2787
+ split: "character",
2788
+ stagger: 40,
2789
+ animations: [
2790
+ { prop: "opacity", from: 1, to: 0, duration: 450 },
2791
+ { prop: "scaleY", from: 1, to: 0, duration: 450 },
2792
+ { prop: "scaleX", from: 1, to: 0, duration: 550, jitterDelay: 80, transformOrigin: { x: 0.5, y: 0.5, z: 150 } },
2793
+ { prop: "rotate", from: 0, to: -690, duration: 650, transformOrigin: { x: 0.5, y: 0.5, z: -80 } },
2794
+ ],
2795
+ };
2796
+ export const pivot = {
2797
+ name: "emphasis/pivot",
2798
+ split: "character",
2799
+ stagger: 50,
2800
+ animations: [
2801
+ { prop: "rotate", from: 0, to: 360, duration: 700, ease: "expo.out", transformOrigin: { x: 0.5, y: 1 } },
2802
+ ],
2803
+ };
2804
+ export const pivot2 = {
2805
+ name: "emphasis/pivot-2",
2806
+ split: "word",
2807
+ stagger: 40,
2808
+ animations: [
2809
+ { prop: "rotate", from: 0, to: 360, duration: 700, ease: "anticipate.inOut", jitterDelay: 170 },
2810
+ ],
2811
+ };
2812
+ export const pivotBounce = {
2813
+ name: "emphasis/pivot-bounce",
2814
+ split: "character",
2815
+ stagger: 50,
2816
+ staggerOrder: "edges",
2817
+ animations: [
2818
+ { prop: "rotate", from: 0, to: 360, duration: 650, ease: "bounce.out", jitterDelay: 40, transformOrigin: { x: 1, y: 1 } },
2819
+ ],
2820
+ };
2821
+ export const pivotSnap = {
2822
+ name: "emphasis/pivot-snap",
2823
+ split: "character",
2824
+ stagger: 30,
2825
+ animations: [
2826
+ { prop: "rotate", from: 0, to: 360, duration: 650, ease: "back.inOut", jitterDelay: 60, transformOrigin: { x: 1, y: 0 } },
2827
+ ],
2828
+ };
2829
+ export const swivelSnapDepth = {
2830
+ name: "emphasis/swivel-snap-depth",
2831
+ split: "character",
2832
+ stagger: 20,
2833
+ staggerOrder: "end",
2834
+ perspective: 1050,
2835
+ transformOrigin: { x: 0.5, y: 0.5 },
2836
+ animations: [
2837
+ { prop: "rotateY", from: 0, to: 360, duration: 600, ease: "back.out" },
2838
+ ],
2839
+ };
2840
+ export const pivot4 = {
2841
+ name: "emphasis/pivot-3",
2842
+ split: "character",
2843
+ stagger: 50,
2844
+ animations: [
2845
+ { prop: "rotate", from: 0, to: 360, duration: 600, ease: "power2.inOut", transformOrigin: { x: 0.5, y: 0 } },
2846
+ ],
2847
+ };
2848
+ /**
2849
+ * Every Studio-generated preset, paired with its preset name. Index.ts
2850
+ * spreads this into the runtime registry alongside the handcurated
2851
+ * entries.
2852
+ */
2853
+ export const ALL_GENERATED = [
2854
+ { name: "enter/extend-y-scatter", preset: extendYScatter },
2855
+ { name: "enter/extend-x-snap", preset: extendXSnap },
2856
+ { name: "enter/tilt-in-spring", preset: tiltInSpring },
2857
+ { name: "enter/lean-in-spring", preset: leanInSpring },
2858
+ { name: "enter/expand-snap", preset: expandSnap },
2859
+ { name: "enter/flip-up-spring", preset: flipUpSpring },
2860
+ { name: "enter/slide-scatter", preset: slideScatter },
2861
+ { name: "enter/soar-swarm", preset: soarSwarm },
2862
+ { name: "enter/tunnel", preset: tunnel },
2863
+ { name: "enter/soar-bounce", preset: soarBounce },
2864
+ { name: "enter/stretch-x-kick", preset: stretchXKick },
2865
+ { name: "enter/slide-bounce", preset: slideBounce },
2866
+ { name: "enter/stretch-x-scatter", preset: stretchXScatter },
2867
+ { name: "enter/glide-scatter", preset: glideScatter },
2868
+ { name: "enter/grow-scatter", preset: growScatter },
2869
+ { name: "enter/unfurl-y-scatter", preset: unfurlYScatter },
2870
+ { name: "enter/pivot-curl", preset: pivotCurl },
2871
+ { name: "enter/stretch-y-scatter", preset: stretchYScatter },
2872
+ { name: "enter/lean-in-scatter-curl", preset: leanInScatterCurl },
2873
+ { name: "enter/settle-scatter", preset: settleScatter },
2874
+ { name: "enter/expand-scatter", preset: expandScatter },
2875
+ { name: "enter/slant-scatter", preset: slantScatter },
2876
+ { name: "enter/extend-x-curl", preset: extendXCurl },
2877
+ { name: "enter/extend-y-curl", preset: extendYCurl },
2878
+ { name: "enter/tumble-x-scatter-word", preset: tumbleXScatterWord },
2879
+ { name: "enter/flip-up-scatter-curl", preset: flipUpScatterCurl },
2880
+ { name: "enter/expand-scatter-loose", preset: expandScatterLoose },
2881
+ { name: "enter/tilt-in-scatter", preset: tiltInScatter },
2882
+ { name: "enter/unfurl-x-scatter", preset: unfurlXScatter },
2883
+ { name: "enter/bloom-scatter", preset: bloomScatter },
2884
+ { name: "enter/flip-up-scatter-bounce", preset: flipUpScatterBounce },
2885
+ { name: "enter/fold-in-scatter-bounce", preset: foldInScatterBounce },
2886
+ { name: "enter/swivel-scatter-loose", preset: swivelScatterLoose },
2887
+ { name: "enter/swirl-scatter", preset: swirlScatter },
2888
+ { name: "enter/twirl-scatter", preset: twirlScatter },
2889
+ { name: "enter/extend-x-snap-word", preset: extendXSnapWord },
2890
+ { name: "enter/rise-y-scatter", preset: riseYScatter },
2891
+ { name: "enter/lean-scatter", preset: leanScatter },
2892
+ { name: "enter/rise-y-scatter-curl", preset: riseYScatterCurl },
2893
+ { name: "enter/whirl-scatter", preset: whirlScatter },
2894
+ { name: "enter/pinwheel-scatter", preset: pinwheelScatter },
2895
+ { name: "enter/swivel-scatter-deep", preset: swivelScatterDeep },
2896
+ { name: "enter/fold-in-curl", preset: foldInCurl },
2897
+ { name: "enter/turn-scatter-curl", preset: turnScatterCurl },
2898
+ { name: "enter/fold-in-scatter-curl", preset: foldInScatterCurl },
2899
+ { name: "enter/flip-up-scatter-word", preset: flipUpScatterWord },
2900
+ { name: "enter/tilt-in-scatter-word", preset: tiltInScatterWord },
2901
+ { name: "enter/unfurl-y-curl", preset: unfurlYCurl },
2902
+ { name: "enter/extend-y-scatter-word", preset: extendYScatterWord },
2903
+ { name: "enter/topple", preset: topple },
2904
+ { name: "enter/blur-rise-snap", preset: blurRiseSnap },
2905
+ { name: "enter/loom", preset: loom },
2906
+ { name: "enter/glide-outward", preset: glideOutward },
2907
+ { name: "enter/tilt-in-bounce", preset: tiltInBounce },
2908
+ { name: "enter/expand-scatter-trail", preset: expandScatterTrail },
2909
+ { name: "enter/rotate-y-in-deep", preset: rotateYInDeep },
2910
+ { name: "enter/swipe-spring", preset: swipeSpring },
2911
+ { name: "enter/swipe-scatter", preset: swipeScatter },
2912
+ { name: "enter/tilt-in-inward", preset: tiltInInward },
2913
+ { name: "enter/grow-spring", preset: growSpring },
2914
+ { name: "enter/extend-y-scatter-curl", preset: extendYScatterCurl },
2915
+ { name: "enter/rotate-y-in-scatter-curl", preset: rotateYInScatterCurl },
2916
+ { name: "enter/fold-in-scatter-snap", preset: foldInScatterSnap },
2917
+ { name: "enter/slant-scatter-spring", preset: slantScatterSpring },
2918
+ { name: "enter/rise-y-scatter-loose", preset: riseYScatterLoose },
2919
+ { name: "enter/tilt-in-scatter-curl", preset: tiltInScatterCurl },
2920
+ { name: "enter/spread-x-scatter-curl", preset: spreadXScatterCurl },
2921
+ { name: "enter/twirl-scatter-curl", preset: twirlScatterCurl },
2922
+ { name: "enter/tip-in-scatter", preset: tipInScatter },
2923
+ { name: "enter/lift-spring", preset: liftSpring },
2924
+ { name: "enter/stretch-x-bounce", preset: stretchXBounce },
2925
+ { name: "enter/unfurl-x-kick", preset: unfurlXKick },
2926
+ { name: "enter/rotate-y-in-inward", preset: rotateYInInward },
2927
+ { name: "enter/haze-outward", preset: hazeOutward },
2928
+ { name: "enter/pivot-scatter", preset: pivotScatter },
2929
+ { name: "enter/turn-spring", preset: turnSpring },
2930
+ { name: "enter/tumble-x-loose", preset: tumbleXLoose },
2931
+ { name: "enter/lean-in-scatter-spring", preset: leanInScatterSpring },
2932
+ { name: "enter/topple-scatter-trail", preset: toppleScatterTrail },
2933
+ { name: "enter/whirl-scatter-curl", preset: whirlScatterCurl },
2934
+ { name: "enter/tip-in-scatter-curl", preset: tipInScatterCurl },
2935
+ { name: "enter/swirl-loose", preset: swirlLoose },
2936
+ { name: "enter/rotate-y-in-scatter-spring", preset: rotateYInScatterSpring },
2937
+ { name: "enter/whirl-scatter-loose", preset: whirlScatterLoose },
2938
+ { name: "enter/tip-in-scatter-snap", preset: tipInScatterSnap },
2939
+ { name: "enter/swivel-scatter-inward", preset: swivelScatterInward },
2940
+ { name: "enter/topple-scatter-kick", preset: toppleScatterKick },
2941
+ { name: "exit/collapse-snap", preset: collapseSnap },
2942
+ { name: "exit/lean-out-snap", preset: leanOutSnap },
2943
+ { name: "exit/exit-x-burst", preset: exitXBurst },
2944
+ { name: "exit/mist-out", preset: mistOut },
2945
+ { name: "exit/shear-out-burst", preset: shearOutBurst },
2946
+ { name: "exit/compress-x-kick", preset: compressXKick },
2947
+ { name: "exit/rise-out-burst", preset: riseOutBurst },
2948
+ { name: "exit/flip-out-burst", preset: flipOutBurst },
2949
+ { name: "exit/pivot-out-burst", preset: pivotOutBurst },
2950
+ { name: "exit/flip-out-curl", preset: flipOutCurl },
2951
+ { name: "exit/turn-out-burst", preset: turnOutBurst },
2952
+ { name: "exit/squash-x-burst", preset: squashXBurst },
2953
+ { name: "exit/swivel-out-burst", preset: swivelOutBurst },
2954
+ { name: "exit/topple-out-burst", preset: toppleOutBurst },
2955
+ { name: "exit/flatten-y", preset: flattenY },
2956
+ { name: "exit/tilt-out-burst-loose", preset: tiltOutBurstLoose },
2957
+ { name: "exit/swirl-out-curl", preset: swirlOutCurl },
2958
+ { name: "exit/topple-out-burst-curl", preset: toppleOutBurstCurl },
2959
+ { name: "exit/squash-x-burst-curl", preset: squashXBurstCurl },
2960
+ { name: "exit/tip-out-burst", preset: tipOutBurst },
2961
+ { name: "exit/fold-out-burst", preset: foldOutBurst },
2962
+ { name: "exit/fold-out-burst-curl", preset: foldOutBurstCurl },
2963
+ { name: "exit/flip-out-loose", preset: flipOutLoose },
2964
+ { name: "exit/tip-out-burst-curl", preset: tipOutBurstCurl },
2965
+ { name: "exit/topple-out-burst-snap", preset: toppleOutBurstSnap },
2966
+ { name: "exit/fold-out-burst-2", preset: foldOutBurst2 },
2967
+ { name: "exit/tilt-out-burst-word", preset: tiltOutBurstWord },
2968
+ { name: "exit/compress-x-burst", preset: compressXBurst },
2969
+ { name: "exit/lift-out-burst", preset: liftOutBurst },
2970
+ { name: "exit/swivel-out-curl", preset: swivelOutCurl },
2971
+ { name: "exit/flatten-y-burst", preset: flattenYBurst },
2972
+ { name: "exit/compress-x-burst-curl", preset: compressXBurstCurl },
2973
+ { name: "exit/tip-out-burst-loose", preset: tipOutBurstLoose },
2974
+ { name: "exit/swivel-out-burst-curl", preset: swivelOutBurstCurl },
2975
+ { name: "exit/lean-out-burst", preset: leanOutBurst },
2976
+ { name: "exit/lean-out-burst-word", preset: leanOutBurstWord },
2977
+ { name: "exit/lean-out-burst-curl", preset: leanOutBurstCurl },
2978
+ { name: "exit/swivel-out", preset: swivelOut },
2979
+ { name: "exit/dissolve-kick", preset: dissolveKick },
2980
+ { name: "exit/rise-out-kick", preset: riseOutKick },
2981
+ { name: "exit/swivel-out-kick", preset: swivelOutKick },
2982
+ { name: "exit/twirl-out-burst", preset: twirlOutBurst },
2983
+ { name: "exit/pinwheel-out", preset: pinwheelOut },
2984
+ { name: "exit/turn-out-burst-snap", preset: turnOutBurstSnap },
2985
+ { name: "exit/swirl-out-burst", preset: swirlOutBurst },
2986
+ { name: "exit/compress-x-burst-kick", preset: compressXBurstKick },
2987
+ { name: "exit/turn-out-burst-2", preset: turnOutBurst2 },
2988
+ { name: "exit/flatten-x-loose", preset: flattenXLoose },
2989
+ { name: "exit/pivot-out-burst-loose", preset: pivotOutBurstLoose },
2990
+ { name: "exit/flatten-x-burst-loose", preset: flattenXBurstLoose },
2991
+ { name: "exit/turn-out-burst-deep", preset: turnOutBurstDeep },
2992
+ { name: "exit/lean-out-burst-swarm", preset: leanOutBurstSwarm },
2993
+ { name: "exit/topple-out-burst-kick", preset: toppleOutBurstKick },
2994
+ { name: "exit/turn-out-burst-swarm", preset: turnOutBurstSwarm },
2995
+ { name: "exit/tilt-out-burst", preset: tiltOutBurst2 },
2996
+ { name: "exit/swivel-out-burst-loose", preset: swivelOutBurstLoose },
2997
+ { name: "exit/implode-burst", preset: implodeBurst },
2998
+ { name: "exit/swivel-out-loose", preset: swivelOutLoose },
2999
+ { name: "exit/compress-x-burst-loose", preset: compressXBurstLoose },
3000
+ { name: "exit/fold-out-burst-loose", preset: foldOutBurstLoose },
3001
+ { name: "exit/collapse-burst", preset: collapseBurst },
3002
+ { name: "exit/compress-y-burst-curl", preset: compressYBurstCurl },
3003
+ { name: "exit/twirl-out-burst-loose", preset: twirlOutBurstLoose },
3004
+ { name: "exit/flatten-y-curl", preset: flattenYCurl },
3005
+ { name: "exit/tip-out-burst-inward", preset: tipOutBurstInward },
3006
+ { name: "exit/flatten-x-burst-deep", preset: flattenXBurstDeep },
3007
+ { name: "exit/swivel-out-burst-snap", preset: swivelOutBurstSnap },
3008
+ { name: "exit/tilt-out-burst-deep", preset: tiltOutBurstDeep },
3009
+ { name: "exit/swipe-out-snap", preset: swipeOutSnap },
3010
+ { name: "exit/turn-out-burst-trail", preset: turnOutBurstTrail },
3011
+ { name: "exit/topple-out-burst-2", preset: toppleOutBurst2 },
3012
+ { name: "exit/flatten-x-curl", preset: flattenXCurl },
3013
+ { name: "exit/tilt-out-burst-kick", preset: tiltOutBurstKick },
3014
+ { name: "emphasis/wiggle-outward", preset: wiggleOutward },
3015
+ { name: "emphasis/lean-loose", preset: leanLoose },
3016
+ { name: "emphasis/pinwheel-curl", preset: pinwheelCurl },
3017
+ { name: "emphasis/bob", preset: bob },
3018
+ { name: "emphasis/whirl-loose", preset: whirlLoose },
3019
+ { name: "emphasis/whirl-loose-2", preset: whirlLoose2 },
3020
+ { name: "emphasis/fold-tap-curl", preset: foldTapCurl },
3021
+ { name: "emphasis/turn-deep", preset: turnDeep },
3022
+ { name: "emphasis/tip-curl", preset: tipCurl },
3023
+ { name: "emphasis/swivel-curl", preset: swivelCurl },
3024
+ { name: "emphasis/pump-trail", preset: pumpTrail },
3025
+ { name: "emphasis/twirl-curl", preset: twirlCurl },
3026
+ { name: "emphasis/jolt-y-trail", preset: joltYTrail },
3027
+ { name: "emphasis/sway-curl", preset: swayCurl },
3028
+ { name: "emphasis/twirl-curl-inward", preset: twirlCurlInward },
3029
+ { name: "emphasis/carousel-inward", preset: carouselInward },
3030
+ { name: "emphasis/jolt-y-trail-2", preset: joltYTrail2 },
3031
+ { name: "emphasis/tip-deep", preset: tipDeep },
3032
+ { name: "emphasis/tap-x-loose", preset: tapXLoose },
3033
+ { name: "emphasis/rock-inward", preset: rockInward },
3034
+ { name: "enter/tumble-scatter-tunnel-word", preset: tumbleScatterTunnelWord },
3035
+ { name: "enter/twirl-scatter-2", preset: twirlScatter2 },
3036
+ { name: "enter/pivot-scatter-2", preset: pivotScatter2 },
3037
+ { name: "enter/tumble-scatter", preset: tumbleScatter },
3038
+ { name: "enter/whirl-scatter-2", preset: whirlScatter2 },
3039
+ { name: "enter/whirl-scatter-3", preset: whirlScatter3 },
3040
+ { name: "enter/spin-scatter", preset: spinScatter },
3041
+ { name: "enter/whirl-scatter-4", preset: whirlScatter4 },
3042
+ { name: "enter/haze-scatter", preset: hazeScatter },
3043
+ { name: "enter/twirl-scatter-3", preset: twirlScatter3 },
3044
+ { name: "enter/twirl-scatter-4", preset: twirlScatter4 },
3045
+ { name: "enter/whirl-scatter-5", preset: whirlScatter5 },
3046
+ { name: "enter/tumble-scatter-2", preset: tumbleScatter2 },
3047
+ { name: "enter/compress-y-scatter", preset: compressYScatter },
3048
+ { name: "enter/topple-snap-loose-word", preset: toppleSnapLooseWord },
3049
+ { name: "enter/drop-scatter-bounce-word", preset: dropScatterBounceWord },
3050
+ { name: "enter/slant-scatter-bounce", preset: slantScatterBounce },
3051
+ { name: "enter/slant-scatter-spring-word", preset: slantScatterSpringWord },
3052
+ { name: "enter/whirl-scatter-6", preset: whirlScatter6 },
3053
+ { name: "enter/haze-scatter-2", preset: hazeScatter2 },
3054
+ { name: "enter/whirl-scatter-snap", preset: whirlScatterSnap },
3055
+ { name: "enter/whirl-scatter-snap-tunnel", preset: whirlScatterSnapTunnel },
3056
+ { name: "enter/haze-scatter-3", preset: hazeScatter3 },
3057
+ { name: "enter/haze-snap", preset: hazeSnap },
3058
+ { name: "enter/haze-scatter-spring", preset: hazeScatterSpring },
3059
+ { name: "enter/whirl-scatter-word", preset: whirlScatterWord2 },
3060
+ { name: "enter/slant-scatter-word", preset: slantScatterWord },
3061
+ { name: "exit/twirl-loose", preset: twirlLoose },
3062
+ { name: "exit/twirl-scatter-tunnel", preset: twirlScatterTunnel },
3063
+ { name: "exit/whirl-scatter-tunnel", preset: whirlScatterTunnel },
3064
+ { name: "exit/slide-scatter", preset: slideScatter2 },
3065
+ { name: "exit/whirl-scatter-tunnel-2", preset: whirlScatterTunnel3 },
3066
+ { name: "exit/pivot-scatter-tunnel", preset: pivotScatterTunnel },
3067
+ { name: "exit/fog-scatter", preset: fogScatter },
3068
+ { name: "exit/fog-scatter-2", preset: fogScatter2 },
3069
+ { name: "exit/rise-scatter", preset: riseScatter2 },
3070
+ { name: "exit/rise-scatter-2", preset: riseScatter3 },
3071
+ { name: "exit/twirl", preset: twirl },
3072
+ { name: "exit/topple", preset: topple2 },
3073
+ { name: "exit/whirl-scatter", preset: whirlScatter32 },
3074
+ { name: "exit/slide-loose", preset: slideLoose },
3075
+ { name: "exit/slide-scatter-2", preset: slideScatter22 },
3076
+ { name: "exit/twirl-2", preset: twirl2 },
3077
+ { name: "emphasis/pivot", preset: pivot },
3078
+ { name: "emphasis/pivot-2", preset: pivot2 },
3079
+ { name: "emphasis/pivot-bounce", preset: pivotBounce },
3080
+ { name: "emphasis/pivot-snap", preset: pivotSnap },
3081
+ { name: "emphasis/swivel-snap-depth", preset: swivelSnapDepth },
3082
+ { name: "emphasis/pivot-3", preset: pivot4 },
3083
+ ];
3084
+ //# sourceMappingURL=generated.js.map