anyone have any idea what kind of scrolling is in this website? and how to achieve it? https://www.desty.app/
First for your information they use nuxt.js for their landing lage.
If you want to achieve this kind of scrolling in bubble you need to to a little bit html css code.
The most simple solution would be:
Create a group for every page view and give them an id like groupone, grouptwo…
then have the html elements on the site with code like this:
groupone {
position: sticky!important;
top: 50px!important;
}
grouptwo {
position: sticky!important;
top: 80px!important;
}
.
.
.
and so on
if i’m not mistaken, i think what u’re suggesting can be achieved without css (cmiiw)
i mean i already had it stacked, i just don’t know how to do the transition/animation it self (see this image below )
This topic was automatically closed after 70 days. New replies are no longer allowed.