svelte-scroller
svelte-scroller copied to clipboard
A <Scroller> component for Svelte apps
There seems to be a conflict with the use of background blur on the parent div element. The scrolling mechanisms don't work when I put backdrop-filter: blur on it. Is...
Swaps the current fixed/absolute swap with position sticky. This is more efficient because we only update the offset once (except on parallax mode). Moving the offset calculation outside of the...
I was whether it is possible to create a static site using [adapter-static](https://kit.svelte.dev/docs/adapter-static). I am quite new to svelte, have tried to follow the [Usage](https://kit.svelte.dev/docs/adapter-static#usage) section, but can't figure it...
1. what's going on with these lower case element names, like `` that only seem to map to css classes? 2. what is the best way to allow pointer events...
Hello, By default, parent container of the foreground element has a z index of 2, which makes sense. But on mobile, it can be helpful for the background element to...
https://svelte.dev/repl/6b905f0706784db18e4d60ef90ecd02d?version=3.49.0 I make a scroller with images, it seems to use lazy loading, so the images keep reloading after/before I scroll up and down per index. If I have to...
Just wondering if there was any consideration for using position fixed rather than position sticky. Was it for compatibility reasons?
Is it possible to execute arbitrary functions such as: ```jsx let index function count() { console.log('this executes upon scrolling to the third section'); } if (index = 2) { count()...
When clicking on a button the data from my scroller are updating. But even by updating the index and count. The scroller information are going to stay the same. Is...
The uncompiled component is now named just `Scroller.svelte`. Also, remove the misleading text about `index.mjs`: it's not just more efficient to use `Scroller.svelte`, but svelte-scroller no longer even builds or...