File tree Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -271,6 +271,24 @@ class="text-center text-3xl font-extrabold sm:text-4xl"
271
271
272
272
{{-- List --}}
273
273
<div
274
+ x-init ="
275
+ () => {
276
+ motion.inView($el, (element) => {
277
+ motion.animate(
278
+ Array.from($el.children),
279
+ {
280
+ y: [20, 0],
281
+ opacity: [0, 1],
282
+ },
283
+ {
284
+ duration: 1,
285
+ ease: motion.backOut,
286
+ delay: motion.stagger(0.1),
287
+ },
288
+ )
289
+ })
290
+ }
291
+ "
274
292
class =" mt-10 flex flex-col items-center justify-center gap-x-6 gap-y-8 lg:flex-row lg:items-start"
275
293
>
276
294
<div
@@ -284,7 +302,9 @@ class="group relative isolate flex w-full max-w-75 items-center gap-5 overflow-h
284
302
<h5
285
303
class =" text-2xl leading-relaxed font-semibold text-violet-900 transition duration-300 ease-in-out will-change-transform group-hover:translate-x-0.5 dark:text-violet-400"
286
304
>
287
- Laracon Ticket
305
+ Laracon
306
+ <br />
307
+ Ticket
288
308
</h5 >
289
309
{{-- Illustration --}}
290
310
<img
@@ -325,7 +345,9 @@ class="group relative isolate flex w-full max-w-75 items-center gap-5 overflow-h
325
345
<h5
326
346
class =" text-2xl leading-relaxed font-semibold text-sky-900 transition duration-300 ease-in-out will-change-transform group-hover:translate-x-0.5 dark:text-sky-300"
327
347
>
328
- NativePHP T-Shirt
348
+ NativePHP
349
+ <br />
350
+ T-Shirt
329
351
</h5 >
330
352
{{-- Illustration --}}
331
353
<img
@@ -376,7 +398,9 @@ class="group relative isolate flex w-full max-w-75 items-center gap-5 overflow-h
376
398
<h5
377
399
class =" text-2xl leading-relaxed font-semibold text-orange-900 transition duration-300 ease-in-out will-change-transform group-hover:translate-x-0.5 dark:text-orange-400"
378
400
>
379
- NativePHP License
401
+ NativePHP
402
+ <br />
403
+ License
380
404
</h5 >
381
405
{{-- Illustration --}}
382
406
<img
You can’t perform that action at this time.
0 commit comments