I have a question for a webflow site that I am working on (https://bartleypowers.webflow.io/). The homepage has tabs which autoplays vimeo videos. The client wants to use vimeo only. On desktop, the video loads fine. However, on mobile, it takes a lot of time to load and it also gets stuck in between. Can someone please help me out to fix this issue?
Adding the read-only link and the recording from my mobile.
Look into using <source> elements within the video for lower resolutions and frame rates, Vimeo pro gives you a wide range of streaming URLs to choose from. Choose some mobile-friendly ones.
Mobile autoplay stalls because multiple Vimeo iframes are loading at once inside Tabs. On phones, that kills bandwidth/CPU and the player throttles.
Do this:
Only load the active tab’s video.
Put the Vimeo URL in data-src on each iframe and leave src empty.
On tab change, set iframe.src = iframe.dataset.src for the newly active tab; player.unload() the others.
Use the right player params for mobile autoplay: ?autoplay=1&muted=1&playsinline=1&background=1&loop=1&autopause=1
(Autoplay on iOS requires muted=1 + playsinline=1.)
Lazy-load + preconnect:
Add loading="lazy" to the iframe (works on Chrome).
Had to deal with this on a client site,biggest win was unloading inactive videos. Lazy-load each iframe with data-src, then swap in the URL only when its tab is active. Combine with Vimeo’s muted=1&playsinline=1&autoplay=1&background=1 params and preconnect tags, and mobile playback becomes smooth.
This is a pretty common issue when autoplaying Vimeo on mobile, because mobile browsers don’t buffer as aggressively as desktop, and network quality varies. You can do few things like:
Don’t autoplay all videos at once
Right now all your tab videos start loading instantly.
On mobile, load only the first one, and only trigger the next video when the user taps the tab. In this you can do that by removing autoplay on all Vimeo embeds - then use an interaction on click to play only the selected one.
Use Vimeo ‘background’ player params
Add these to the end of your embed link
?background=1&autoplay=1&muted=1&playsinline=1
This helps mobile load smaller versions + reduces UI lag.
Add poster images for each video
Load a still image (jpg/webp) first - then swap to video when the user interacts.
This is one of the biggest improvements for mobile smoothness.
Reduce video file size on Vimeo
Even if you keep Vimeo only, compressing the original upload matters.
Export at lower bitrate for web 1080p is fine, but lower bitrate.
These small adjustments usually fix the ‘gets stuck’ feeling on mobile because you are not making the phone load multiple heavyweight video streams simultaneously.
If you ever want help improving overall site loading speed especially for video heavy builds / mobile stability, you can also take a look into Website Speedy App. It focuses on performance optimization so video + media sections load faster without changing your design.