A very small svelte component to animate your elements on scroll
SAoS allows you to animate once or multiple times a element on scroll, you can define the top and bottom "triggers" and the css of the internal divs (not recomended, but can help in some cases), see below the demo, how install and some examples :smile_cat:
In terms of performance, this lib uses the Intersection Observer for most of the browsers (shame on you Internet Explorer)
Npm
npm i saos --save-dev
Yarn
yarn add -D saos
Note: Sapper only supports libs as DEV dependencies, if you realy want to use this lib as a normal dependency on Sapper make sure to import like this import Saos from 'saos/src/Saos.svelte';
or otherwise you will have problems with SSR!
Basic usage:
First import the package on Svelte
import Saos from "saos";
Then define your @keyframes animation as a -global- on svelte
@keyframes -global-from-left {
0% {
transform: rotateX(50deg) translateX(-200vw) skewX(-50deg);
opacity: 1;
}
100% {
transform: rotateX(0deg) translateX(0) skewX(0deg);
opacity: 1;
}
}
Finally add the keyframe name without the -global- and the others animations params
<Saos animation={"from-left 4s cubic-bezier(0.35, 0.5, 0.65, 0.95) both"}>
<div><p>animation: from-left</p></div>
</Saos>
Beyond the animation param, you can use:
You can do something like:
// Create a handler on your script
function handleObserver(x) {
console.info(x.detail.observing);
}
// Use the `update` event on your html that will be dispatched every time that the `observing` update!
<Saos on:update={handleObserver}>...</Saos>
And it will work! Amazing no? take a look at the last card on our demo
If you are lazy (like me) to create your own animations, take a look at animista