opacity: 0
or visibility: hidden
instead of display: none
to ensure the video and poster load properly.preload="none"
and use JavaScript to load the video only when needed.If you’re using a hidden video inside a modal in Webflow, the poster image may not appear as expected when the modal is opened. This often happens because Webflow hides elements using display: none
, which prevents the video from loading correctly. Here’s how to fix this issue:
opacity: 0
Instead of display: none
display: none
, set it to opacity: 0
with pointer-events: none
.opacity: 1
and remove pointer-events: none
to make it interactive.visibility
Propertyvisibility: hidden
instead of display: none
.visibility: visible
while maintaining the layout.preload="none"
to prevent loading until needed.src
only when the modal is opened.Use opacity: 0
or visibility: hidden
instead of display: none
, or overlay a static poster image. For advanced control, use JavaScript to delay video loading until the modal is opened.