InNeed delivers a unified platform that combines advanced artificial intelligence, secure digital infrastructure, and governance-ready design to help organizations deploy intelligence with confidence.
Scroll down to see various animation techniques
Slides in from the left with fade
Scales up from center with bounce
Slides in from the right with fade
Scroll down to trigger these animations
Triggered when scrolled into view
Combines movement with rotation
Spring animation on scroll
Elements animate in a specific order
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Interactive GSAP animation on hover
<script>
import { onMount } from 'svelte';
import { animations } from '$lib/gsap';
let element;
onMount(() => {
animations.fadeInUp(element, {
duration: 1,
delay: 0.2
});
});
</script>
<div bind:this={element}>
Animated content!
</div>