We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cbe158 commit ce81ceeCopy full SHA for ce81cee
resources/views/brand.blade.php
@@ -110,6 +110,23 @@ class="mx-auto max-w-3xl pt-4 text-base/relaxed text-pretty text-gray-600 sm:tex
110
111
{{-- List --}}
112
<div
113
+ x-init="
114
+ () => {
115
+ motion.inView($el, (element) => {
116
+ gsap.fromTo(
117
+ Array.from($el.children),
118
+ { x: -10, autoAlpha: 0 },
119
+ {
120
+ x: 0,
121
+ autoAlpha: 1,
122
+ stagger: 0.1,
123
+ duration: 0.7,
124
+ ease: 'power2.out',
125
+ },
126
+ )
127
+ })
128
+ }
129
+ "
130
class="mx-auto mt-10 flex w-full max-w-md flex-col items-stretch gap-10"
131
>
132
@php
0 commit comments