How can I auto start and loop a YouTube video in Webflow without the play button?

TL;DR
  • Embed a YouTube video in Webflow by using the URL format https://www.youtube.com/embed/VIDEOID?autoplay=1&loop=1&playlist=VIDEOID&controls=0&showinfo=0, replacing VIDEO_ID with your video ID.
  • Insert this URL into an Embed Element and ensure attributes like allow="autoplay; encrypted-media" are included for the video to auto-start and loop without controls.

To auto start and loop a YouTube video in Webflow without displaying the play button, follow these steps:

1. Embed the YouTube Video

  • Copy the URL of your YouTube video.
  • Add an Embed Element to your Webflow project where you want the video to appear.

2. Construct the Embed URL

  • Change the standard YouTube URL to an embed format. Use the following format: https://www.youtube.com/embed/VIDEOID?autoplay=1&loop=1&playlist=VIDEOID&controls=0&showinfo=0.
  • Replace VIDEO_ID with your actual YouTube video ID.

3. Customize Embed Settings

  • Add Parameters to your embed link:
  • autoplay=1: Starts the video automatically.
  • loop=1: Loops the video.
  • playlist=VIDEO_ID: This is necessary for looping; use the same video ID.
  • controls=0: Hides the play button and controls.
  • showinfo=0: Hides the title bar at the top of the video (deprecated, but still used sometimes).

4. Insert the Embed Code

  • Paste the constructed URL in an Embed Element, like this:

  ```html

  <iframe src="https://www.youtube.com/embed/VIDEOID?autoplay=1&loop=1&playlist=VIDEOID&controls=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

  ```

  • Adjust Attributes: Ensure allow="autoplay; encrypted-media" is included in the iframe for autoplay to function correctly.

Summary

Auto-start and loop a YouTube video in Webflow by using an embed URL with autoplayloop, and controls parameters configured. Insert this URL into a Webflow Embed Element, and the video will play and loop without showing the play button.

Rate this answer

Other Webflow Questions