Helpful resources
            
           
              Need more help?
             
             
              Check out the Webflow community.
             
            
              Free Webflow templates
             
             
              The best free Webflow templates.
             
            
              Hire a Webflow expert
             
             
              Partner with a certified expert.
             
            How can I set a Vimeo Embed Vid on "autoplay" for mobile devices in Webflow?
             Published on
            
            
             September 22, 2023
            
           To set a Vimeo embed video to autoplay on mobile devices in Webflow, you can follow these steps:
- Add a Vimeo embed to your Webflow project:
 
- Go to the Vimeo video you want to embed and copy the video's URL.
 - In your Webflow project, select the page where you want to add the video.
 - Drag and drop an Embed component onto the page.
 - Open the Embed component settings by clicking on it.
 - In the settings panel, paste the Vimeo video URL in the embed code field.
 
- Configure the autoplay settings:
 
- After pasting the Vimeo video URL in the embed code field, modify the code to include the autoplay parameter.
 - Locate the video URL in the embed code and add ?autoplay=1 at the end.
 - For example, the modified URL should look like this: https://vimeo.com/yourvideo?autoplay=1
 
- Use custom code to enable autoplay on mobile devices:
 
- By default, most mobile devices block autoplay videos due to data usage and user experience concerns.
 - To override this, you can use JavaScript code to detect mobile devices and trigger the autoplay function.
 - In your Webflow project, go to the page settings and add the following custom code before the closing tag:
 
<script>if (/Mobi/i.test(navigator.userAgent)) {  var iframe = document.querySelector('iframe');  iframe.setAttribute('autoplay', true);}</script>
           - Test and publish:
 
- Preview your website and ensure that the Vimeo video plays automatically on mobile devices.
 - If everything looks good, publish your Webflow site to make the changes live.
 
By following these steps, you should be able to set a Vimeo embed video to autoplay on mobile devices in Webflow.
Additional Tips:
- Keep in mind that autoplaying videos can negatively impact mobile data usage and user experience. Consider the importance of autoplay in relation to your website's content and purpose.
 - Always test the autoplay functionality on different devices and browsers to ensure cross-compatibility.
 
Questions users may ask:
- How can I add a Vimeo video to my Webflow project?
 - Can I set a Vimeo video to autoplay on Webflow?
 - How do I use custom code to trigger autoplay on mobile devices in Webflow?