Is it possible to add a property to my homepage, and my sections so it scrolls from section to section like a TikTok feed?
I am using the Prestige theme and i got 3 image with text overlay sections on my homepage.
A user wants to implement TikTok-style snap scrolling on their Shopify homepage using the Prestige theme, where the page scrolls from one full-screen section to another.
Proposed Solution:
scroll-container div within theme.liquid or index.liquidfullscreen-section divsscroll-snap-type: y mandatory on the containerheight: 100vh for both container and sectionsscroll-snap-align: start and scroll-snap-stop: always on sectionsThis creates vertical full-screen snap scrolling between the three “Image with text overlay” sections. The solution remains untested by the original poster.
Is it possible to add a property to my homepage, and my sections so it scrolls from section to section like a TikTok feed?
I am using the Prestige theme and i got 3 image with text overlay sections on my homepage.
Hi @Issyeissue1 ,
Below is the brief solution to make your Shopify homepage scroll like a TikTok feed.
In theme.liquid or index.liquid, wrap your homepage content:
In sections/image-with-text-overlay.liquid, wrap the content like this:
Add this CSS to your theme in base.css
.scroll-container
{
scroll-snap-type: y mandatory;
overflow-y: scroll;
height: 100vh;
}
.fullscreen-section
{
height: 100vh;
scroll-snap-align: start;
scroll-snap-stop: always;
}
This creates vertical full-screen snap scrolling between your “Image with text overlay” sections just like TikTok.
please use these steps and do let me know if it works for your theme.
Thanks !