autoplay=1&muted=1&controls=0&background=1
), and trigger the modal via Webflow interactions for play and close/reset functionality.You're trying to get a lightbox in Webflow to autoplay a Vimeo video without displaying Vimeo’s second play button. Webflow’s native Lightbox wraps the video in a player that delays autoplay and shows Vimeo’s native play UI, but this can be avoided with a custom setup.
Use a Vimeo embed link as the video source with the following parameters:
autoplay=1: Plays automatically.
muted=1: Required for autoplay to work in most browsers.
background=1 or controls=0: Hides UI elements if desired.
Example Vimeo embed link:
https://player.vimeo.com/video/VIDEO_ID?autoplay=1&muted=1&controls=0&background=1
iframe src
attribute back to empty and then resetting it with JavaScript or duplicate visibility logic in Webflow).To autoplay Vimeo in a Webflow lightbox without a second play button, avoid the native Lightbox and instead use a custom modal with an embedded Vimeo iframe that includes autoplay=1&muted=1&controls=0&background=1
. Trigger this modal with a click and use Webflow interactions to manage its visibility.